Skip to content

Commit 66657c9

Browse files
author
Simone Gentili
committedApr 30, 2024
add missing generics example
1 parent 6411337 commit 66657c9

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed
 

‎README.md

+1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ In questo repository puoi trovare buona parte del codice in cui si parla del lib
66

77
- [React] [useTransition()](/react/useTransition)
88
- [Next] [./app/not-found.tsx](/next.js/page-not-found)
9+
- [TypeScript] [generics](/typescript/generics)
910

1011
...

‎typescript/generics/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.js

‎typescript/generics/README.md

Whitespace-only changes.
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
class Coda<T> {
2+
private items: T[] = [];
3+
4+
aggiungi(item: T): void {
5+
this.items.push(item);
6+
}
7+
8+
togli(): T | undefined {
9+
return this.items.shift();
10+
}
11+
12+
dimensione(): number {
13+
return this.items.length;
14+
}
15+
}
16+
17+
const numberQueue = new Coda<number>();
18+
numberQueue.aggiungi(10);
19+
numberQueue.aggiungi(20);
20+
numberQueue.aggiungi(30);
21+
console.log(numberQueue.togli());
22+
console.log(numberQueue.dimensione());

0 commit comments

Comments
 (0)
Please sign in to comment.