Method
__init__
(self, elements: T.Sequence[Node], h: float = 0.0,
m: T.Literal['additional', 'exactly'] = 'additional')
Source from the content-addressed store, hash-verified
| 1424 | """A vertical list of boxes.""" |
| 1425 | |
| 1426 | def __init__(self, elements: T.Sequence[Node], h: float = 0.0, |
| 1427 | m: T.Literal['additional', 'exactly'] = 'additional'): |
| 1428 | super().__init__(elements) |
| 1429 | self.vpack(h=h, m=m) |
| 1430 | |
| 1431 | def is_char_node(self) -> bool: |
| 1432 | # See description in Node.is_char_node. |
Callers
nothing calls this directly
Tested by
no test coverage detected