Class: UState::Query::False
- Inherits:
-
Node
- Object
- Node
- UState::Query::False
show all
- Defined in:
- lib/ustate/query/false.rb
Instance Method Summary
collapse
Methods inherited from Node
#indent, #inspect, #inspect_helper, #mass
Instance Method Details
#==(other) ⇒ Object
3
4
5
|
# File 'lib/ustate/query/false.rb', line 3
def ==(other)
other.kind_of? False
end
|
#===(state) ⇒ Object
7
8
9
|
# File 'lib/ustate/query/false.rb', line 7
def ===(state)
false
end
|
#to_s ⇒ Object
11
12
13
|
# File 'lib/ustate/query/false.rb', line 11
def to_s
false
end
|