struct
WaylandClient::Seat::Xkb::Key
- WaylandClient::Seat::Xkb::Key
- Struct
- Value
- Object
Defined in:
seat/xkb.crConstant Summary
-
MODIFIERS =
{65505, 65505, 65509, 65507, 65508, 65513, 65027, 65407}
Constructors
Instance Method Summary
- #==(other : Char)
- #chr
- #clone
- #copy_with(value _value = @value, key _key = @key)
-
#inspect(io : IO) : Nil
Appends this struct's name and instance variables names and values to the given IO.
- #key : UInt32
- #modifier?
- #name(state)
- #value : LibXkbcommon::XkbKeysym
Constructor Detail
Instance Method Detail
def inspect(io : IO) : Nil
#
Description copied from struct Struct
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)"