UNPKG

astl

Version:

AssemblyScript-STL (Standard Template Library, migrated from the C++)

11 lines (10 loc) 211 B
export class Entry<Key, T> { public readonly first: Key; public second: T; public constructor(first: Key, second: T) { this.first = first; this.second = second; } }