Press n or j to go to the next uncovered block, b, p or k for the previous block.
import {isSome, Option} from '../option'; export const count = <T>(option: Option<T>): number => isSome(option) ? 1 : 0;