A filtercomp that negates the filter it contains.
Create an negation component of the specified filter.
# File lib/treequel/filter.rb, line 121
def initialize( filter )
@filter = filter
end
Return the stringified filter form of the receiver.
# File lib/treequel/filter.rb, line 126
def to_s
return '!' + @filter.to_s
end
| / | Search |
|---|---|
| ? | Show this help |