diff options
| author | Shulhan <ms@kilabit.info> | 2018-09-17 01:21:27 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2018-09-18 01:50:21 +0700 |
| commit | 44b26edf7f390db383fe025454be0c4e30cfbd9b (patch) | |
| tree | 84d02953bc9095312182534936c1b60667957f07 /lib/tabula/matrix.go | |
| parent | 4a820ec157501c957d2e30f1670656cceec5c044 (diff) | |
| download | pakakeh.go-44b26edf7f390db383fe025454be0c4e30cfbd9b.tar.xz | |
Merge package "github.com/shuLhan/tabula"
Diffstat (limited to 'lib/tabula/matrix.go')
| -rw-r--r-- | lib/tabula/matrix.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/tabula/matrix.go b/lib/tabula/matrix.go new file mode 100644 index 00000000..62ab68ac --- /dev/null +++ b/lib/tabula/matrix.go @@ -0,0 +1,13 @@ +// Copyright 2017, Shulhan <ms@kilabit.info>. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be found +// in the LICENSE file. + +package tabula + +// +// Matrix is a combination of columns and rows. +// +type Matrix struct { + Columns *Columns + Rows *Rows +} |
