Lines Matching refs:integer
7 $n = 1234; # decimal integer
8 $n = 0b1110011; # binary integer
9 $n = 01234; # octal integer
10 $n = 0x1234; # hexadecimal integer
64 In fact numbers stored in the native integer format may be stored either
83 native integer --> native floating point (*)
84 native integer --> decimal string
85 native floating_point --> native integer (*)
87 decimal string --> native integer
111 In C<< native floating point --> native integer >> conversions the magnitude
117 If the C<< decimal string --> native integer >> conversion cannot be done
132 of four different ways: they may force it to one of the integer/floating/
137 All the operators which need an argument in the integer format treat the
150 loss of precision then the integer result is used. Otherwise arguments are
152 The caching of conversions (as described above) means that the integer
161 =item Arithmetic operators during C<use integer>
163 In scopes where C<use integer;> is in force, nearly all the operators listed
164 above will force their argument(s) into integer format, and return an integer
166 behavior with C<use integer;>
175 Arguments are forced into the integer format if not strings.
177 =item Bitwise operators during C<use integer>
179 forces arguments to integer format. Also shift operations internally use
182 =item Operators which expect an integer
184 force the argument into the integer format. This is applicable