IOE.Semialign
type t('a)
= t('a)
let map: ('a => 'b) => t('a) => t('b);
let align: t('a) => t('b) => t(Relude_Ior_Type.t('a, 'b));
let alignWith: (Relude_Ior_Type.t('a, 'b) => 'c) => t('a) => t('b) => t('c);