MCPcopy Create free account
hub / github.com/dengwirda/jigsaw / push_tail

Method push_tail

src/libcpp/containers/block_array.hpp:728–741  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

726 */
727
728 __inline_call size_type push_tail ( // _def-construct
729 )
730 {/* _def construct object and increment count */
731 size_type result = count();
732 size_type offset = count()>>_pwr2;
733
734 if (result == alloc())
735 inc_alloc(result + 1);
736
737 this-> _block[offset].push_tail();
738 this-> _count += + 1 ;
739
740 return result ;
741 }
742
743 __inline_call size_type push_tail ( // copy-construct
744 data_type const&_data

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected