Class: Ldpath::PropertySelector

Inherits:
Selector
  • Object
show all
Defined in:
lib/ldpath/selectors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Selector

#evaluate, #loading

Constructor Details

#initialize(property) ⇒ PropertySelector



80
81
82
# File 'lib/ldpath/selectors.rb', line 80

def initialize(property)
  @property = property
end

Instance Attribute Details

#propertyObject (readonly)

Returns the value of attribute property.



79
80
81
# File 'lib/ldpath/selectors.rb', line 79

def property
  @property
end

Instance Method Details

#evaluate_one(uri, context) ⇒ Object



84
85
86
# File 'lib/ldpath/selectors.rb', line 84

def evaluate_one(uri, context)
  context.query([uri, property, nil]).lazy.map(&:object)
end