module Roby::Queries::Any

Implementation of a singleton object that match any other object

Public Class Methods

===(other) click to toggle source

@return [Boolean] match operator, always returns true

# File lib/roby/queries/any.rb, line 6
def self.===(other)
    true
end
droby_dump(peer) click to toggle source
# File lib/roby/queries/any.rb, line 16
def self.droby_dump(peer)
    DRoby.new
end