File size: 250 Bytes
5641073
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * Why would anyone **SANE** ever use this!?
 *
 * @author jdiaz5513
 */

import { ListCtor } from "./list";
import { PointerList } from "./pointer-list";
import { Void } from "./void";

export const VoidList: ListCtor<Void> = PointerList(Void);