Module IOE.Alt

type t('a) = t('a);
let map: ('a => 'b) => t('a) => t('b);
let alt: t('a) => t('a) => t('a);