Grid.BorderSourceBox-drawing border character sets.
Box-drawing border character sets.
A border defines the 11 Unicode scalars needed to draw a complete box: four corners, horizontal and vertical edges, four T-junctions, and a cross intersection.
type t = {top_left : Uchar.t;top_right : Uchar.t;bottom_left : Uchar.t;bottom_right : Uchar.t;horizontal : Uchar.t;vertical : Uchar.t;top_t : Uchar.t;bottom_t : Uchar.t;left_t : Uchar.t;right_t : Uchar.t;cross : Uchar.t;}The type for border character sets.
val modify :
?top_left:Uchar.t ->
?top_right:Uchar.t ->
?bottom_left:Uchar.t ->
?bottom_right:Uchar.t ->
?horizontal:Uchar.t ->
?vertical:Uchar.t ->
?top_t:Uchar.t ->
?bottom_t:Uchar.t ->
?left_t:Uchar.t ->
?right_t:Uchar.t ->
?cross:Uchar.t ->
t ->
tmodify ?top_left ... base is base with the specified characters overridden.
The type for box sides.