class Scoruby::Predicates::TruePredicate

Public Instance Methods

field() click to toggle source
# File lib/scoruby/predicates/true_predicate.rb, line 6
def field
  nil
end
missing?(_) click to toggle source
# File lib/scoruby/predicates/true_predicate.rb, line 14
def missing?(_)
  false
end
true?(_) click to toggle source
# File lib/scoruby/predicates/true_predicate.rb, line 10
def true?(_)
  true
end