Xapian::Mset
Inherits Enumerable < Iterable < Reference < Object
Constructors
new(mset : LibXapian::Mset)
SourceInstance methods
empty?
Returns true if self does not contain any element.
([] of Int32).empty? # => true
([1]).empty? # => false
[nil, false].empty? # => false
#present?returns the inverse.
map
Returns an Array with the results of running the block against each element of the collection.
[1, 2, 3].map { |i| i * 10 } # => [10, 20, 30]
to_unsafe
Source