Get returns the index-th elements of the *pb.Record contained by this wrapper.
(index int)
| 57 | // Get returns the index-th elements of the *pb.Record contained |
| 58 | // by this wrapper. |
| 59 | func (w *Record) Get(index int) float32 { |
| 60 | return w.record.Data[index] |
| 61 | } |
| 62 | |
| 63 | // Meta returns the value of a record meta data given its name |
| 64 | // or an empty string if not found. |
no outgoing calls