Interface Claim
interface Claim {
label?: string;
pred: Read<boolean>;
value: boolean;
and(other: Read<boolean>): Claim;
during(scope: Scope): Claim;
labelled(name: string): Claim;
not(): Claim;
or(other: Read<boolean>): Claim;
peek(): boolean;
}
label?: string;
pred: Read<boolean>;
value: boolean;
and(other: Read<boolean>): Claim;
during(scope: Scope): Claim;
labelled(name: string): Claim;
not(): Claim;
or(other: Read<boolean>): Claim;
peek(): boolean;
}
Hierarchy
- Read<boolean>
- Claim (View Summary)
Fluent claim — a labeled bool signal with the algebra.