linkedList

type-safe double linked lists
git clone https://noulin.net/git/linkedList.git
Log | Files | Refs | README | LICENSE

README.md (569B)


      1 # Sheepy
      2 This is a sheepy package for [sheepy](https://spartatek.se/r/sheepy/file/README.md.html) and using [libsheepy](https://spartatek.se/r/libsheepy/file/README.md.html)
      3 
      4 # Linked list
      5 type-safe double linked lists
      6 
      7 The nodes in the list are stored in segments for efficiency.
      8 
      9 The data can be stored in the list directly nodes to reduce the frequency of memory allocations.
     10 
     11 # Usage
     12 
     13 Install with spm: `spm install linkedList`
     14 
     15 Include header file:
     16 - `#include "shpPackages/linkedList/linkedList.h"`
     17 
     18 Usage examples are on the top of the headers and in `main.c`.
     19