Binato/server/objects/MatchArray.ts

14 lines
332 B
TypeScript
Raw Normal View History

2022-11-23 00:48:28 +00:00
import { FunkyArray } from "./FunkyArray";
import { Match } from "./Match";
export class MatchArray extends FunkyArray<Match> {
public getById(id:number) : Match | undefined {
for (let match of this.getIterableItems()) {
2023-08-20 13:03:01 +01:00
if (match.matchId === id) {
2022-11-23 00:48:28 +00:00
return match;
}
}
return undefined;
}
}