AtCoder::ModInt1000000007
Inherits Struct / Value / Object
Implements atcoder::modint1000000007_i64.
alias Mint = AtCoder::ModInt1000000007
Mint.new(30_i64) // Mint.new(7_i64)
Constants
M = 1000000007_u32
M2 = 582344008_u32
MOD = 1000000007_i64
MR = 2226617417_u32
R = 2068349879_u32
Constructors
new
SourceClass methods
combination(n, k)
Sourcefactorial(n)
Sourcepermutation(n, k)
Sourcerepeated_combination(n, k)
Sourcezero
SourceInstance methods
*(value : self)
Source*(value)
Source**(value)
Source+(value : self)
Source+(value)
Source-(value : self)
Source-(value)
Source/(value : self)
Source/(value)
Source//(value)
Source<(value)
Source<<(value)
Source<=(value)
Source==(other : self)
Source==(other)
Returns true if this struct is equal to other.
Both structs' instance vars are compared to each other. Thus, two structs are considered equal if each of their instance variables are equal. Subclasses should override this method to provide specific equality semantics.
struct Point
def initialize(@x : Int32, @y : Int32)
end
end
p1 = Point.new 1, 2
p2 = Point.new 1, 2
p3 = Point.new 3, 4
p1 == p2 # => true
p1 == p3 # => false
>(value)
Source>=(value)
Sourceabs
Sourceclone
Sourceinspect(io : IO)
Appends this struct's name and instance variables names and values to the given IO.
struct Point
def initialize(@x : Int32, @y : Int32)
end
end
p1 = Point.new 1, 2
p1.to_s # "Point(@x=1, @y=2)"
p1.inspect # "Point(@x=1, @y=2)"
inv
Sourcemgy
mgy=(v : UInt32)
Sourcepow(value)
Sourcepred
Sourcereduce(b : UInt64) : UInt32
Sourcesqrt
Sourcesucc
Sourceto_i64
Sourceval
Sourcevalue
Sourcezero?
Source