How to use the tstl.equal_to function in tstl

To help you get started, we’ve selected a few tstl examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github samchon / framework / src / protocol / entity / IEntityGroup.ts View on Github external
export function get,
			IteratorT extends std.base.Iterator,
			ReverseT extends std.base.ReverseIterator>
		(entityGroup: IEntityGroup, key: any): T
	{
		for (let it = entityGroup.begin(); !it.equals(entityGroup.end()); it = it.next())
			if (std.equal_to(it.value.key(), key) == true)
				return it.value;

		throw new std.OutOfRange("out of range");
	}
}
github samchon / framework / src / protocol / entity / IEntityGroup.ts View on Github external
function (entity: T): boolean
			{
				return std.equal_to(entity.key(), key);
			}
		);