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

Method push_item

src/libcpp/containers/arraylist.hpp:159–167  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

157 */
158
159 __inline_call void_type push_item (
160 item_type*&_head,
161 item_type *_item
162 )
163 {
164 /*--------------------------------- append about head */
165 _item->_next = _head;
166 _head =_item ;
167 }
168
169 __inline_call void_type _pop_item (
170 item_type*&_head,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected