XLSXComposer.SectionCoords (xlsx_composer v0.1.0)

View Source

Elixir.XLSXComposer.SectionCoords represents location of the cell in a given section.

This approach allows use to move a group of cells at ones. Furthermore, this approach allows for an easier understanding of the structure of the document while being performant.

Summary

Types

t()

@type t() :: %XLSXComposer.SectionCoords{x: x(), y: y()}

x()

@type x() :: non_neg_integer()

y()

@type y() :: non_neg_integer()

Functions

build(arg)

@spec build({x(), y()}) :: t()

build(x \\ 0, y \\ 0)

@spec build(x(), y()) :: t()