| 1 | /** |
| 2 | * A data type for immutable linked lists representing ordered collections of elements of type `A`. |
| 3 | * |
| 4 | * This data type is optimal for last-in-first-out (LIFO), stack-like access patterns. If you need another access pattern, for example, random access or FIFO, consider using a collection more suited to this than `List`. |
nothing calls this directly
no test coverage detected