Lines -package:base
Treats each pair of vertices as an independent line segment. Vertices
2n-1 and 2n define line n. N/2 lines are
drawn.
( number of newlines contained
, number of characters since the last newline
, number of bytes
, number of bytes since the last newline )
A raw canvas to paint ANSI-styled characters on.
The number of lines in which the workspaces will be arranged. It's
possible to use a number of lines that is not a divisor of the number
of workspaces, but the results are better when using a divisor. If
it's not a divisor, the last line will have the remaining workspaces.
Specify the number of lines explicitly.
points in the plot are interconnected by lines.
Start from the given number of lines back. You can use Lines
0 to start the stream without looking for previous lines.
lines breaks a ByteString up into a list of ByteStrings at
newline Chars (
'\n'). The resulting strings do not contain
newlines.
Note that it
does not regard CR (
'\r') as a newline
character.
lines lazily splits a ByteString into a list of ByteStrings at
newline Chars (
'\n'). The resulting strings do not contain
newlines. The first chunk of the result is only strict in the first
chunk of the input.
Note that it
does not regard CR (
'\r') as a newline
character.
O(n) Breaks a
Text up into a list of
Texts at
newline characters
'\n' (LF, line feed). The resulting
strings do not contain newlines.
lines does not treat
'\r' (CR, carriage return)
as a newline character.
Split a string into a list of lines. Lines are terminated by
'\n' or the end of the string. Empty lines may not be
terminated by the end of the string. See also
lines'.
Split a string into a list of lines. Lines are terminated by
'\n' or the end of the string. Empty lines may not be
terminated by the end of the string. See also
lines'.
Split a string into a list of lines. Lines are terminated by
'\n' or the end of the string. Empty lines may not be
terminated by the end of the string. See also
lines'.