Module Column.Of_field
val field : ?align:Align.t -> ?min_width:int -> ?max_width:int -> ?show:[ `Yes | `No | `If_not_empty ] -> ?header:string -> ('field -> string) -> ('record, 'field) Core_kernel.Field.t -> 'record tCreate a column based on a field of a record.
val field_attr : ?align:Align.t -> ?min_width:int -> ?max_width:int -> ?show:[ `Yes | `No | `If_not_empty ] -> ?header:string -> ('field -> Attr.t list * string) -> ('record, 'field) Core_kernel.Field.t -> 'record tfield_attris tofieldascreate_attris tocreate.
val field_opt : ?align:Align.t -> ?min_width:int -> ?max_width:int -> ?show:[ `Yes | `No | `If_not_empty ] -> ?header:string -> ('field -> string) -> ('record, 'field option) Core_kernel.Field.t -> 'record tLike
field, but defaults to""ifNone
val field_opt_attr : ?align:Align.t -> ?min_width:int -> ?max_width:int -> ?show:[ `Yes | `No | `If_not_empty ] -> ?header:string -> ('field -> Attr.t list * string) -> ('record, 'field option) Core_kernel.Field.t -> 'record tLike
field_attr, but defaults to([], "")ifNone