MCPcopy Create free account
hub / github.com/BirolLab/abyss / Load

Method Load

FMIndex/bit_array.cc:207–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

205}
206
207void BitArray::Load(std::istream& is){
208 Clear();
209 is.read((char*)(&length_), sizeof(length_));
210 Init(length_);
211 is.read((char*)(&bit_blocks_[0]), sizeof(bit_blocks_[0]) * bit_blocks_.size());
212 Build();
213}
214
215
216}

Callers 1

BitArraysClass · 0.80

Calls 2

readMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected