class Rf::SupportedVSC
- Rf::SupportedVSC
- Berm::Flag
- Reference
- Object
Defined in:
config.crConstant Summary
-
FlagValues =
[:Git, :Svn] of ::Symbol
-
FLAGVALUES =
[:Git, :Svn] of ::Symbol
-
use verbatim to avoid macro escaping
-
Git =
Rf::SupportedVSC.new(PermValues::Git.value.to_u32)
-
None =
Rf::SupportedVSC.new(PermValues::None.value.to_u32)
-
Svn =
Rf::SupportedVSC.new(PermValues::Svn.value.to_u32)
Constructors
Instance Method Summary
- #!=(other : Rf::SupportedVSC)
- #&(other : Rf::SupportedVSC)
- #==(other : Rf::SupportedVSC)
- #|(other : Rf::SupportedVSC)
- #from_string(string : String) : UInt32
- #permits_git?
- #permits_something?
- #permits_svn?
-
#to_s(io : IO)
Appends a short String representation of this object which includes its class name and its object address.
- #to_yaml(yaml : YAML::Nodes::Builder)
- #value : UInt32
Constructor Detail
Instance Method Detail
def to_s(io : IO)
#
Description copied from class Reference
Appends a short String representation of this object which includes its class name and its object address.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).to_s # => #<Person:0x10a199f20>