import { SimpleEmitter } from "./SimpleEmitter"; import { WritableProperty } from "./property/WritableProperty"; import { SimpleProperty } from "./property/SimpleProperty"; import { Emitter } from "./Emitter"; import { Property } from "./property/Property"; import { DependentProperty } from "./property/DependentProperty"; import { WritableListProperty } from "./property/list/WritableListProperty"; import { SimpleWritableListProperty } from "./property/list/SimpleWritableListProperty"; export function emitter(): Emitter { return new SimpleEmitter(); } export function property(value: T): WritableProperty { return new SimpleProperty(value); } export function list_property(...values: T[]): WritableListProperty { return new SimpleWritableListProperty(...values); } export function add(left: Property, right: number): Property { return left.map(l => l + right); } export function sub(left: Property, right: number): Property { return left.map(l => l - right); } export function map( f: (prop_1: S, prop_2: T) => R, prop_1: Property, prop_2: Property, ): Property { return new DependentProperty([prop_1, prop_2], () => f(prop_1.val, prop_2.val)); }