Module Comprehension.Block

type t('M, 'T) = ('M, t'('M, 'T));
and t'('M, 'T) = {
  1. left: Pattern.t('M, 'T),
  2. right: Expression.t('M, 'T),
  3. each: bool,
};