abstract struct Int
Overview
Int is the base type of all integer types.
There are four signed integer types: Int8, Int16, Int32 and Int64,
being able to represent numbers of 8, 16, 32 and 64 bits respectively.
There are four unsigned integer types: UInt8, UInt16, UInt32 and UInt64.
An integer literal is an optional #+ or #- sign, followed by
a sequence of digits and underscores, optionally followed by a suffix.
If no suffix is present, the literal's type is the lowest between Int32, Int64 and UInt64
in which the number fits:
1 # Int32
1_i8 # Int8
1_i16 # Int16
1_i32 # Int32
1_i64 # Int64
1_u8 # UInt8
1_u16 # UInt16
1_u32 # UInt32
1_u64 # UInt64
+10 # Int32
-20 # Int32
2147483648 # Int64
9223372036854775808 # UInt64
The underscore _ before the suffix is optional.
Underscores can be used to make some numbers more readable:
1_000_000 # better than 1000000
Binary numbers start with 0b:
0b1101 # == 13
Octal numbers start with 0o:
0o123 # == 83
Hexadecimal numbers start with 0x:
0xFE012D # == 16646445
0xfe012d # == 16646445
Included Modules
Direct Known Subclasses
Defined in:
int.crhumanize.cr
time/span.cr:398
time/span.cr:566
big/big_int.cr
big/big_rational.cr
big/big_decimal.cr
json/to_json.cr
Constructors
-
.from_io(io : IO, format : IO::ByteFormat) : self
Reads an integer from the given io in the given format.
Instance Method Summary
- #%(other : BigInt) : BigInt
-
#%(other : Int)
Returns
selfmodulo other. - #&*(other : BigInt) : BigInt
-
#&**(exponent : Int) : self
Returns the value of raising
selfto the power of exponent. - #&+(other : BigInt) : BigInt
- #&-(other : BigInt) : BigInt
- #*(other : BigInt) : BigInt
- #*(other : BigRational)
- #*(other : BigDecimal)
-
#**(exponent : Int) : self
Returns the value of raising
selfto the power of exponent. -
#**(exponent : Float) : Float64
Returns the value of raising
selfto the power of exponent. - #+(other : BigRational)
- #+(other : BigDecimal)
- #+(other : BigInt) : BigInt
- #-(other : BigRational)
- #-(other : BigInt) : BigInt
- #-(other : BigDecimal)
- #/(other : BigRational)
- #/(other : BigDecimal)
- #/(other : Int)
- #/(other : BigInt) : BigInt
-
#//(other : Float)
Divides
selfby other as floating point numbers and applies the floor function to that result. - #//(other : BigRational)
- #//(other : BigDecimal)
- #//(other : BigInt) : BigInt
-
#//(other : Int)
Divides
selfby other using floored division. -
#<<(count : Int)
Returns the result of shifting this number's bits count positions to the left.
- #<=>(other : BigDecimal)
- #<=>(other : BigRational)
- #<=>(other : Int) : Int32
- #<=>(other : BigInt)
- #===(char : Char)
-
#>>(count : Int)
Returns the result of shifting this number's bits count positions to the right.
- #abs
-
#bit(bit)
Returns this number's bitth bit, starting with the least-significant.
-
#bits_set?(mask)
Returns
trueif all bits in mask are set onself. - #ceil
-
#chr
Returns a
Charthat has the unicode codepoint ofself. -
#day : Time::Span
Returns a
Time::Spanofselfdays. -
#days : Time::Span
Returns a
Time::Spanofselfdays. - #divisible_by?(num)
- #downto(to)
- #downto(to, &block : self -> ) : Nil
- #even?
- #fdiv(other)
- #floor
- #gcd(other : Int)
- #gcm(other : BigInt) : Int
- #hash(hasher)
-
#hour : Time::Span
Returns a
Time::Spanofselfhours. -
#hours : Time::Span
Returns a
Time::Spanofselfhours. -
#humanize_bytes(io : IO, precision : Int = 3, separator = '.', *, significant : Bool = true, format : BinaryPrefixFormat = :IEC) : Nil
Prints this integer as a binary value in a human-readable format using a
BinaryPrefixFormat. -
#humanize_bytes(precision : Int = 3, separator = '.', *, significant : Bool = true, format : BinaryPrefixFormat = :IEC) : String
Prints this integer as a binary value in a human-readable format using a
BinaryPrefixFormat. - #lcm(other : BigInt) : BigInt
- #lcm(other : Int)
-
#microsecond : Time::Span
Returns a
Time::Spanofselfmicroseconds. -
#microseconds : Time::Span
Returns a
Time::Spanofselfmicroseconds. -
#millisecond : Time::Span
Returns a
Time::Spanofselfmilliseconds. -
#milliseconds : Time::Span
Returns a
Time::Spanofselfmilliseconds. -
#minute : Time::Span
Returns a
Time::Spanofselfminutes. -
#minutes : Time::Span
Returns a
Time::Spanofselfminutes. - #modulo(other)
-
#month : Time::MonthSpan
Returns a
Time::MonthSpanofselfmonths. -
#months : Time::MonthSpan
Returns a
Time::MonthSpanofselfmonths. -
#nanosecond : Time::Span
Returns a
Time::Spanofselfnanoseconds. -
#nanoseconds : Time::Span
Returns a
Time::Spanofselfnanoseconds. - #odd?
-
#popcount
Counts
1-bits in the binary representation of this integer. - #pred
-
#remainder(other : Int)
Returns
selfremainder other. - #round
-
#second : Time::Span
Returns a
Time::Spanofselfseconds. -
#seconds : Time::Span
Returns a
Time::Spanofselfseconds. - #succ
-
#tdiv(other : Int)
Divides
selfby other using truncated division. - #times
- #times(&block : self -> ) : Nil
- #to(to)
- #to(to, &block : self -> ) : Nil
-
#to_big_d
Converts
selftoBigDecimal. -
#to_big_i : BigInt
Returns a
BigIntrepresenting this integer. -
#to_big_r
Returns a
BigRationalrepresenting this integer. -
#to_io(io : IO, format : IO::ByteFormat)
Writes this integer to the given io in the given format.
- #to_json(json : JSON::Builder)
- #to_s(base : Int, upcase : Bool = false) : String
- #to_s(io : IO) : Nil
- #to_s(base : Int, io : IO, upcase : Bool = false) : Nil
- #to_s : String
-
#trailing_zeros_count
Returns the number of trailing
0-bits. - #trunc
- #upto(to)
- #upto(to, &block : self -> ) : Nil
-
#week : Time::Span
Returns a
Time::Spanofselfweeks. -
#weeks : Time::Span
Returns a
Time::Spanofselfweeks. -
#year : Time::MonthSpan
Returns a
Time::MonthSpanofselfyears. -
#years : Time::MonthSpan
Returns a
Time::MonthSpanofselfyears. - #~
Instance methods inherited from module Comparable(BigDecimal)
<(other : T)
<,
<=(other : T)
<=,
<=>(other : T)
<=>,
==(other : T)
==,
>(other : T)
>,
>=(other : T)
>=
Instance methods inherited from module Comparable(BigRational)
<(other : T)
<,
<=(other : T)
<=,
<=>(other : T)
<=>,
==(other : T)
==,
>(other : T)
>,
>=(other : T)
>=
Instance methods inherited from module Comparable(BigInt)
<(other : T)
<,
<=(other : T)
<=,
<=>(other : T)
<=>,
==(other : T)
==,
>(other : T)
>,
>=(other : T)
>=
Instance methods inherited from struct Number
*(other : Complex)*(other : BigFloat) *, +(other : BigFloat)
+(other : Complex)
+ +, -(other : Complex)
-(other : BigFloat) -, /(other : Complex)
/(other : BigFloat) /, //(other : BigFloat) //, <=>(other : BigFloat)
<=>(other) : Int32? <=>, ==(other : Complex) ==, abs abs, abs2 abs2, cis cis, clamp(min, max)
clamp(range : Range) clamp, divmod(number) divmod, format(io : IO, separator = '.', delimiter = ',', decimal_places : Int? = nil, *, group : Int = 3, only_significant : Bool = false) : Nil
format(separator = '.', delimiter = ',', decimal_places : Int? = nil, *, group : Int = 3, only_significant : Bool = false) : String format, humanize(io : IO, precision = 3, separator = '.', delimiter = ',', *, base = 10 ** 3, significant = true, prefixes : Indexable = SI_PREFIXES) : Nil
humanize(precision = 3, separator = '.', delimiter = ',', *, base = 10 ** 3, significant = true, prefixes : Proc) : Nil
humanize(precision = 3, separator = '.', delimiter = ',', *, base = 10 ** 3, significant = true, &block) : String
humanize(io : IO, precision = 3, separator = '.', delimiter = ',', *, base = 10 ** 3, significant = true, &prefixes : Int32, Float64 -> Tuple(Int32, UNDERSCORE) | Tuple(Int32, UNDERSCORE, Bool)) : Nil
humanize(precision = 3, separator = '.', delimiter = ',', *, base = 10 ** 3, significant = true, prefixes = SI_PREFIXES) : String
humanize(io : IO, precision = 3, separator = '.', delimiter = ',', *, base = 10 ** 3, significant = true, prefixes : Proc) : Nil humanize, i i, round(digits = 0, base = 10) round, sign sign, significant(digits, base = 10) significant, step(*, to = nil, by = 1)
step(*, to = nil, by = 1, &block) step, to_big_f to_big_f, to_c to_c, to_yaml(yaml : YAML::Nodes::Builder) to_yaml, zero? : Bool zero?
Constructor methods inherited from struct Number
zero : self
zero
Class methods inherited from struct Number
si_prefix(magnitude : Int, prefixes = SI_PREFIXES) : Char?
si_prefix
Instance methods inherited from module Comparable(BigFloat)
<(other : T)
<,
<=(other : T)
<=,
<=>(other : T)
<=>,
==(other : T)
==,
>(other : T)
>,
>=(other : T)
>=
Instance methods inherited from module Comparable(Number)
<(other : T)
<,
<=(other : T)
<=,
<=>(other : T)
<=>,
==(other : T)
==,
>(other : T)
>,
>=(other : T)
>=
Instance methods inherited from struct Value
==(other : JSON::Any)==(other : YAML::Any)
==(other) ==, dup dup
Instance methods inherited from class Object
!=(other)
!=,
!~(other)
!~,
==(other)
==,
===(other : JSON::Any)===(other : YAML::Any)
===(other) ===, =~(other) =~, class class, dup dup, hash(hasher)
hash hash, inspect(io : IO) : Nil
inspect : String inspect, itself itself, not_nil! not_nil!, pretty_inspect(width = 79, newline = "\n", indent = 0) : String pretty_inspect, pretty_print(pp : PrettyPrint) : Nil pretty_print, tap(&block) tap, to_json(io : IO)
to_json to_json, to_pretty_json(indent : String = " ")
to_pretty_json(io : IO, indent : String = " ") to_pretty_json, to_s : String
to_s(io : IO) : Nil to_s, to_yaml(io : IO)
to_yaml to_yaml, try(&block) try, unsafe_as(type : T.class) forall T unsafe_as
Constructor methods inherited from class Object
from_json(string_or_io, root : String) : selffrom_json(string_or_io) : self from_json, from_yaml(string_or_io : String | IO) : self from_yaml
Constructor Detail
Reads an integer from the given io in the given format.
See also: IO#read_bytes.
Instance Method Detail
Returns the value of raising self to the power of exponent.
Raises ArgumentError if exponent is negative: if this is needed,
either use a float base or a float exponent.
Intermediate multiplication will wrap around silently in case of overflow.
2 &** 3 # => 8
2 &** 0 # => 1
2 &** -1 # ArgumentErrorReturns the value of raising self to the power of exponent.
Raises ArgumentError if exponent is negative: if this is needed,
either use a float base or a float exponent.
Raises OverflowError in case of overflow.
2 ** 3 # => 8
2 ** 0 # => 1
2 ** -1 # ArgumentErrorReturns the value of raising self to the power of exponent.
2 ** 3.0 # => 8.0
2 ** 0.0 # => 1.0
2 ** -1.0 # => 0.5Divides self by other as floating point numbers and
applies the floor function to that result.
The result will be of the same type as self.
Divides self by other using floored division.
In floored division, given two integers x and y:
- q = x / y is rounded toward negative infinity
- r = x % y has the sign of the second argument
- x == q*y + r
For example:
x y x / y x % y
5 3 1 2
-5 3 -2 1
5 -3 -2 -1
-5 -3 1 -2
Raises if other is zero, or if other is -1 and
self is signed and is the minimum value for that
integer type.
Returns the result of shifting this number's bits count positions to the left.
- If count is greater than the number of bits of this integer, returns 0
- If count is negative, a right shift is performed
8000 << 1 # => 16000
8000 << 2 # => 32000
8000 << 32 # => 0
8000 << -1 # => 4000Returns the result of shifting this number's bits count positions to the right. Also known as arithmetic right shift.
- If count is greater than the number of bits of this integer, returns 0
- If count is negative, a left shift is performed
8000 >> 1 # => 4000
8000 >> 2 # => 2000
8000 >> 32 # => 0
8000 >> -1 # => 16000
-8000 >> 1 # => -4000Returns this number's bitth bit, starting with the least-significant.
11.bit(0) # => 1
11.bit(1) # => 1
11.bit(2) # => 0
11.bit(3) # => 1
11.bit(4) # => 0Returns true if all bits in mask are set on self.
0b0110.bits_set?(0b0110) # => true
0b1101.bits_set?(0b0111) # => false
0b1101.bits_set?(0b1100) # => trueReturns a Char that has the unicode codepoint of self.
Raises ArgumentError if this integer's value doesn't fit a char's range (0..0x10ffff).
97.chr # => 'a'Prints this integer as a binary value in a human-readable format using
a BinaryPrefixFormat.
Values with binary measurements such as computer storage (e.g. RAM size) are
typically expressed using unit prefixes based on 1024 (instead of multiples
of 1000 as per SI standard). This method by default uses the IEC standard
prefixes (Ki, Mi, Gi, Ti, Pi, Ei, Zi, Yi) based on powers of
1000 (see BinaryPrefixFormat::IEC).
format can be set to use the extended range of JEDEC units (K, M, G,
T, P, E, Z, Y) which equals to the prefixes of the SI system
except for uppercase K and is based on powers of 1024 (see
BinaryPrefixFormat::JEDEC).
1.humanize_bytes # => "1B"
1024.humanize_bytes # => "1.0kiB"
1536.humanize_bytes # => "1.5kiB"
524288.humanize_bytes # => "512kiB"
1073741824.humanize_bytes(format: :IEC) # => "1.0GiB"
See Number#humanize for more details on the behaviour and arguments.
Prints this integer as a binary value in a human-readable format using
a BinaryPrefixFormat.
Values with binary measurements such as computer storage (e.g. RAM size) are
typically expressed using unit prefixes based on 1024 (instead of multiples
of 1000 as per SI standard). This method by default uses the IEC standard
prefixes (Ki, Mi, Gi, Ti, Pi, Ei, Zi, Yi) based on powers of
1000 (see BinaryPrefixFormat::IEC).
format can be set to use the extended range of JEDEC units (K, M, G,
T, P, E, Z, Y) which equals to the prefixes of the SI system
except for uppercase K and is based on powers of 1024 (see
BinaryPrefixFormat::JEDEC).
1.humanize_bytes # => "1B"
1024.humanize_bytes # => "1.0kiB"
1536.humanize_bytes # => "1.5kiB"
524288.humanize_bytes # => "512kiB"
1073741824.humanize_bytes(format: :IEC) # => "1.0GiB"
See Number#humanize for more details on the behaviour and arguments.
Counts 1-bits in the binary representation of this integer.
5.popcount # => 2
-15.popcount # => 29Returns self remainder other.
This uses truncated division.
See Int#div for more details.
Divides self by other using truncated division.
In truncated division, given two integers x and y:
q = x.tdiv(y)is rounded toward zeror = x.remainder(y)has the sign of the first argumentx == q*y + r
For example:
x y x / y x % y
5 3 1 2
-5 3 -1 -2
5 -3 -1 2
-5 -3 1 -2
Raises if other is 0, or if other is -1 and
self is signed and is the minimum value for that
integer type.
Returns a BigInt representing this integer.
require "big"
123.to_big_iWrites this integer to the given io in the given format.
See also: IO#write_bytes.