module Roby::Queries

Namespace for all query and matching-related functionality

Public Class Methods

any() click to toggle source

@return [Any] an object that matches anything

# File lib/roby/queries/any.rb, line 22
def self.any
    Any
end
none() click to toggle source

@return [None] an object that matches nothing

# File lib/roby/queries/none.rb, line 21
def self.none
    None
end