[Source]
# File lib/ole/storage/base.rb, line 562 562: def initialize(*args) 563: super 564: @block_size = 1 << @ole.header.b_shift 565: @io = @ole.io 566: end
Big blocks are kind of -1 based, in order to not clash with the header.
# File lib/ole/storage/base.rb, line 569 569: def blocks_to_ranges blocks, size 570: super blocks.map { |b| b + 1 }, size 571: end
[Validate]