(key string)
| 44 | } |
| 45 | |
| 46 | func (matrix *Matrix) Get(key string) (*MatrixRow, bool) { |
| 47 | if matrix == nil || matrix.om == nil { |
| 48 | return nil, false |
| 49 | } |
| 50 | return matrix.om.Get(key) |
| 51 | } |
| 52 | |
| 53 | func (matrix *Matrix) Set(key string, value *MatrixRow) bool { |
| 54 | if matrix == nil { |
no outgoing calls