import {valueDerivation} from '../Atom' import type {Pointer} from '../pointer' import {isPointer} from '../pointer' import Ticker from '../Ticker' import type {Prism} from './IDerivation' import {isDerivation} from './IDerivation' export default function* iterateOver( pointerOrDerivation: Prism | Pointer, ): Generator { let d if (isPointer(pointerOrDerivation)) { d = valueDerivation(pointerOrDerivation) as Prism } else if (isDerivation(pointerOrDerivation)) { d = pointerOrDerivation } else { throw new Error(`Only pointers and derivations are supported`) } const ticker = new Ticker() const untap = d.onChange(ticker, (v) => {}) try { while (true) { ticker.tick() yield d.getValue() } } finally { untap() } }