class Arv::Collection::LocatorRange

Attributes

locator[R]

Public Class Methods

new(loc_s, start) click to toggle source
Calls superclass method
# File lib/arvados/collection.rb, line 167
def initialize(loc_s, start)
  @locator = loc_s
  range_end = start + Keep::Locator.parse(loc_s).size.to_i
  super(start, range_end, false)
end