Meta returns the value of a record meta data given its name or an empty string if not found.
(name string)
| 63 | // Meta returns the value of a record meta data given its name |
| 64 | // or an empty string if not found. |
| 65 | func (w *Record) Meta(name string) string { |
| 66 | return w.record.Meta[name] |
| 67 | } |
| 68 | |
| 69 | // Equal returns whether the vectors have the same size and are element-wise equal. |
| 70 | func (w *Record) Equal(b *Record) bool { |
no outgoing calls