SList.insertFront

Inserts an item at the front of the list.

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

Meta