Next: term_subst, Previous: term_conversion, Up: Top [Contents]
%--------------------------------------------------% % vim: ts=4 sw=4 et ft=mercury %--------------------------------------------------% % Copyright (C) 1993-2000,2003-2009,2011-2012 The University of Melbourne. % Copyright (C) 2014-2022 The Mercury team. % This file is distributed under the terms specified in COPYING.LIB. %--------------------------------------------------% % % File: term_in.m. % Main author: fjh. % Stability: medium. % % This file provides ways to test whether terms represent integers, % and ways to construct terms representing integers. % %--------------------------------------------------% %--------------------------------------------------% :- module term_int. :- interface. :- import_module term. %--------------------------------------------------% :- pred decimal_term_to_int(term(T)::in, int::out) is semidet. :- pred term_to_int(term(T)::in, int::out) is semidet. :- pred term_to_int8(term(T)::in, int8::out) is semidet. :- pred term_to_int16(term(T)::in, int16::out) is semidet. :- pred term_to_int32(term(T)::in, int32::out) is semidet. :- pred term_to_int64(term(T)::in, int64::out) is semidet. :- pred term_to_uint(term(T)::in, uint::out) is semidet. :- pred term_to_uint8(term(T)::in, uint8::out) is semidet. :- pred term_to_uint16(term(T)::in, uint16::out) is semidet. :- pred term_to_uint32(term(T)::in, uint32::out) is semidet. :- pred term_to_uint64(term(T)::in, uint64::out) is semidet. :- func int_to_decimal_term(int, context) = term(T). :- func int8_to_decimal_term(int8, context) = term(T). :- func int16_to_decimal_term(int16, context) = term(T). :- func int32_to_decimal_term(int32, context) = term(T). :- func int64_to_decimal_term(int64, context) = term(T). :- func uint_to_decimal_term(uint, context) = term(T). :- func uint8_to_decimal_term(uint8, context) = term(T). :- func uint16_to_decimal_term(uint16, context) = term(T). :- func uint32_to_decimal_term(uint32, context) = term(T). :- func uint64_to_decimal_term(uint64, context) = term(T). %--------------------------------------------------% %--------------------------------------------------%