TLParser::Flag
Inherits Struct < Value < Object
Data attached to parameters conditional on flags.
Constructors
new(name : String, index : Int32)
SourceClass methods
parse(str : String)
SourceInstance methods
==(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
clone
Sourcecopy_with(name _name = @name, index _index = @index)
Sourceindex
The bit index used by this flag inside the flags parameter.
name
The name of the parameter containing the flags in its bits.
to_h
Sourceto_s(io)
Source