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 t
- Create 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 t
- field_attris to- fieldas- create_attris to- create.
- 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 t
- Like - field, but defaults to- ""if- None
- 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 t
- Like - field_attr, but defaults to- ([], "")if- None