Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | 26x 26x 26x 10x 26x | import { Contract } from "@jonloucks/contracts-ts/api/Contract";
import { create as createContract } from "@jonloucks/contracts-ts/api/RatifiedContract";
import { RequiredType, guardFunctions } from "@jonloucks/contracts-ts/api/Types";
import { AtomicInteger } from "@jonloucks/contracts-ts/auxiliary/AtomicInteger";
/**
* Factory interface for creating AtomicInteger instances.
*/
export interface AtomicIntegerFactory {
/**
* Create a new AtomicInteger instance.
* @param initialValue the initial value of the AtomicInteger
*/
createAtomicInteger(initialValue?: number): RequiredType<AtomicInteger>;
}
/**
* Type guard for AtomicIntegerFactory interface.
*
* @param instance the instance to check
* @returns true if the instance implements AtomicIntegerFactory
*/
export function guard(instance: unknown): instance is RequiredType<AtomicIntegerFactory> {
return guardFunctions(instance, 'createAtomicInteger');
}
/**
* The factory Contract for creating new AtomicInteger instances.
*/
export const CONTRACT: Contract<AtomicIntegerFactory> = createContract({
test: guard,
name: "AtomicIntegerFactory"
}); |