SList.put

Inserts an item at the front of the list.

  1. void insertFront(T t)
  2. alias insert = insertFront
  3. alias put = insertFront
    struct SList(T, Allocator = Mallocator, bool supportGC = shouldAddGCRange!T)
    alias put = insertFront

Meta