mirror of
https://github.com/nim-lang/Nim.git
synced 2026-08-12 01:55:34 +00:00
16 lines
260 B
Nim
16 lines
260 B
Nim
type
|
|
Clean = object
|
|
mem: int
|
|
Default* = object
|
|
poi: int = 12
|
|
clc: Clean
|
|
se*: range[0'i32 .. high(int32)]
|
|
|
|
NonDefault* = object
|
|
poi: int
|
|
|
|
PrellDeque*[T] = object
|
|
pendingTasks*: range[0'i32 .. high(int32)]
|
|
head: T
|
|
tail: T
|