├── .github ├── dependabot.yml ├── release.yml └── workflows │ ├── ci.yml │ └── codeql.yml ├── .gitignore ├── .mvn └── wrapper │ └── maven-wrapper.properties ├── LICENSE ├── README.md ├── docs └── dokka │ ├── index.md │ └── kformat │ ├── de.m3y.kformat │ ├── -table │ │ ├── -border-renderer │ │ │ ├── has-column-separator.md │ │ │ ├── has-row-separator.md │ │ │ ├── index.md │ │ │ ├── render-connect.md │ │ │ ├── render-horizontal.md │ │ │ └── render-vertical.md │ │ ├── -border-style │ │ │ ├── -border-style.md │ │ │ ├── -companion │ │ │ │ ├── -n-o-n-e.md │ │ │ │ ├── -s-i-n-g-l-e_-l-i-n-e.md │ │ │ │ └── index.md │ │ │ ├── has-column-separator.md │ │ │ ├── has-row-separator.md │ │ │ ├── index.md │ │ │ ├── render-connect.md │ │ │ ├── render-horizontal.md │ │ │ └── render-vertical.md │ │ ├── -companion │ │ │ ├── -a-n-s-i_-e-s-c-a-p-e_-s-e-q-u-e-n-c-e_-r-e-g-e-x.md │ │ │ └── index.md │ │ ├── -hints │ │ │ ├── -alignment │ │ │ │ ├── -c-e-n-t-e-r │ │ │ │ │ └── index.md │ │ │ │ ├── -l-e-f-t │ │ │ │ │ └── index.md │ │ │ │ ├── -r-i-g-h-t │ │ │ │ │ └── index.md │ │ │ │ ├── entries.md │ │ │ │ ├── index.md │ │ │ │ ├── value-of.md │ │ │ │ └── values.md │ │ │ ├── -hints.md │ │ │ ├── -key │ │ │ │ ├── -alignment │ │ │ │ │ └── index.md │ │ │ │ ├── -format-flag │ │ │ │ │ └── index.md │ │ │ │ ├── -header │ │ │ │ │ └── index.md │ │ │ │ ├── -ignore-ansi │ │ │ │ │ └── index.md │ │ │ │ ├── -left-margin │ │ │ │ │ └── index.md │ │ │ │ ├── -line │ │ │ │ │ └── index.md │ │ │ │ ├── -postfix │ │ │ │ │ └── index.md │ │ │ │ ├── -precision │ │ │ │ │ └── index.md │ │ │ │ ├── -prefix │ │ │ │ │ └── index.md │ │ │ │ ├── -separator │ │ │ │ │ └── index.md │ │ │ │ ├── entries.md │ │ │ │ ├── index.md │ │ │ │ ├── of-any-column.md │ │ │ │ ├── of-column.md │ │ │ │ ├── value-of.md │ │ │ │ └── values.md │ │ │ ├── alignment.md │ │ │ ├── border-style.md │ │ │ ├── default-alignment.md │ │ │ ├── format-flag.md │ │ │ ├── ignore-ansi.md │ │ │ ├── index.md │ │ │ ├── left-margin.md │ │ │ ├── postfix.md │ │ │ ├── precision.md │ │ │ └── prefix.md │ │ ├── -line │ │ │ ├── -line.md │ │ │ ├── index.md │ │ │ └── render.md │ │ ├── -row │ │ │ ├── -row.md │ │ │ ├── index.md │ │ │ ├── render.md │ │ │ ├── to-string.md │ │ │ └── values.md │ │ ├── has-rows.md │ │ ├── header.md │ │ ├── hints.md │ │ ├── index.md │ │ ├── line.md │ │ ├── print.md │ │ ├── render.md │ │ ├── row.md │ │ ├── rows.md │ │ ├── separator.md │ │ └── to-string.md │ ├── index.md │ └── table.md │ └── package-list ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main └── kotlin │ └── de │ └── m3y │ └── kformat │ └── Table.kt └── test └── kotlin └── de └── m3y └── kformat └── TableTest.kt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/.gitignore -------------------------------------------------------------------------------- /.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/README.md -------------------------------------------------------------------------------- /docs/dokka/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/has-column-separator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/has-column-separator.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/has-row-separator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/has-row-separator.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/render-connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/render-connect.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/render-horizontal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/render-horizontal.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/render-vertical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-renderer/render-vertical.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-border-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-border-style.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-companion/-n-o-n-e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-companion/-n-o-n-e.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-companion/-s-i-n-g-l-e_-l-i-n-e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-companion/-s-i-n-g-l-e_-l-i-n-e.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-companion/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/-companion/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/has-column-separator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/has-column-separator.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/has-row-separator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/has-row-separator.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/render-connect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/render-connect.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/render-horizontal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/render-horizontal.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-border-style/render-vertical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-border-style/render-vertical.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-companion/-a-n-s-i_-e-s-c-a-p-e_-s-e-q-u-e-n-c-e_-r-e-g-e-x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-companion/-a-n-s-i_-e-s-c-a-p-e_-s-e-q-u-e-n-c-e_-r-e-g-e-x.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-companion/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-companion/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/-c-e-n-t-e-r/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/-c-e-n-t-e-r/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/-l-e-f-t/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/-l-e-f-t/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/-r-i-g-h-t/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/-r-i-g-h-t/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/entries.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/value-of.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/value-of.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-alignment/values.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-hints.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-alignment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-alignment/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-format-flag/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-format-flag/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-header/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-header/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-ignore-ansi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-ignore-ansi/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-left-margin/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-left-margin/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-line/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-line/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-postfix/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-postfix/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-precision/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-precision/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-prefix/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-prefix/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-separator/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/-separator/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/entries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/entries.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/of-any-column.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/of-any-column.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/of-column.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/of-column.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/value-of.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/value-of.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/-key/values.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/alignment.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/border-style.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/border-style.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/default-alignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/default-alignment.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/format-flag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/format-flag.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/ignore-ansi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/ignore-ansi.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/left-margin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/left-margin.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/postfix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/postfix.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/precision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/precision.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-hints/prefix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-hints/prefix.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-line/-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-line/-line.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-line/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-line/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-line/render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-line/render.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-row/-row.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-row/-row.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-row/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-row/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-row/render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-row/render.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-row/to-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-row/to-string.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/-row/values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/-row/values.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/has-rows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/has-rows.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/header.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/hints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/hints.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/line.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/print.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/print.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/render.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/row.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/row.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/rows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/rows.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/separator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/separator.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/-table/to-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/-table/to-string.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/index.md -------------------------------------------------------------------------------- /docs/dokka/kformat/de.m3y.kformat/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/de.m3y.kformat/table.md -------------------------------------------------------------------------------- /docs/dokka/kformat/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/docs/dokka/kformat/package-list -------------------------------------------------------------------------------- /mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/mvnw -------------------------------------------------------------------------------- /mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/mvnw.cmd -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/kotlin/de/m3y/kformat/Table.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/src/main/kotlin/de/m3y/kformat/Table.kt -------------------------------------------------------------------------------- /src/test/kotlin/de/m3y/kformat/TableTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelmay/kformat/HEAD/src/test/kotlin/de/m3y/kformat/TableTest.kt --------------------------------------------------------------------------------