class Array

Public Instance Methods

to_fenwick_tree() click to toggle source
# File lib_lock/ac-library-rb/core_ext/all.rb, line 2
def to_fenwick_tree
  AcLibraryRb::FenwickTree.new(self)
end
Also aliased as: to_fetree
to_fetree()
Alias for: to_fenwick_tree
to_pq()
Alias for: to_priority_queue
to_priority_queue() click to toggle source
# File lib_lock/ac-library-rb/core_ext/all.rb, line 7
def to_priority_queue
  AcLibraryRb::PriorityQueue.new(self)
end
Also aliased as: to_pq