Aktueller Stand

This commit is contained in:
2026-01-22 19:05:45 +01:00
parent 85dee61a4d
commit e280e4eadb
1967 changed files with 397327 additions and 74093 deletions

View File

@@ -7,6 +7,9 @@ export default class LinkedList<T> implements Iterable<T> {
// Members
size: number;
// Constructor
constructor();
// Methods
clear(): void;
first(): T | undefined;
@@ -26,4 +29,4 @@ export default class LinkedList<T> implements Iterable<T> {
// Statics
static from<I>(iterable: Iterable<I> | {[key: string]: I}): LinkedList<I>;
}
}