abstract struct Poor::Markup
- Poor::Markup
- Struct
- Value
- Object
Overview
Abstract representation of a marked-up text.
Included Modules
- Indexable::Mutable(Poor::Markup)
Direct Known Subclasses
Defined in:
markup.crConstructors
Instance Method Summary
- #children
-
#each(&)
Calls the given block once for each element in
self
, passing that element as a parameter. -
#each
Returns an
Iterator
for the elements ofself
. - #each_end(&)
- #each_end
- #each_recursive(&)
- #each_recursive
- #each_start(&)
- #each_start
- #each_start_end(&)
- #each_start_end
- #each_token(&)
- #initialize
-
#inspect(io : IO)
Appends this struct's name and instance variables names and values to the given IO.
- #map_recursive!(&func : Markup -> Markup)
-
#pretty_print(pp : PrettyPrint)
Pretty prints
self
into the given printer. -
#size
Returns the number of elements in this container.
- #text(io : IO)
- #text
-
#to_ansi(io : IO)
Converts the rich text into text with ANSI escape codes for display in terminal.
- #to_ansi
- #to_html(io : IO)
- #to_html
-
#unsafe_fetch(index : Int)
Returns the element at the given index, without doing any bounds check.
-
#unsafe_put(index : Int, value : Markup)
Sets the element at the given index to value, without doing any bounds check.
Constructor Detail
Instance Method Detail
Calls the given block once for each element in self
, passing that
element as a parameter.
a = ["a", "b", "c"]
a.each { |x| print x, " -- " }
produces:
a -- b -- c --
Returns an Iterator
for the elements of self
.
a = ["a", "b", "c"]
iter = a.each
iter.next # => "a"
iter.next # => "b"
The returned iterator keeps a reference to self
: if the array
changes, the returned values of the iterator change as well.
Appends this struct's name and instance variables names and values to the given IO.
struct Point
def initialize(@x : Int32, @y : Int32)
end
end
p1 = Point.new 1, 2
p1.to_s # "Point(@x=1, @y=2)"
p1.inspect # "Point(@x=1, @y=2)"
Pretty prints self
into the given printer.
By default appends a text that is the result of invoking
#inspect
on self
. Subclasses should override
for custom pretty printing.
Returns the number of elements in this container.
Converts the rich text into text with ANSI escape codes for display in terminal.
Returns the element at the given index, without doing any bounds check.
Indexable
makes sure to invoke this method with index in 0...size
,
so converting negative indices to positive ones is not needed here.
Clients never invoke this method directly. Instead, they access
elements with #[](index)
and #[]?(index)
.
This method should only be directly invoked if you are absolutely sure the index is in bounds, to avoid a bounds check for a small boost of performance.
Sets the element at the given index to value, without doing any bounds check.
Indexable::Mutable
makes sure to invoke this method with index in
0...size
, so converting negative indices to positive ones is not needed
here.
Clients never invoke this method directly. Instead, they modify elements
with #[]=(index, value)
.
This method should only be directly invoked if you are absolutely sure the index is in bounds, to avoid a bounds check for a small boost of performance.