Equal returns true when the two vectors are equivalent.
(b Vector)
| 192 | |
| 193 | // Equal returns true when the two vectors are equivalent. |
| 194 | func (v Vector) Equal(b Vector) bool { |
| 195 | return v.Compare(b) == Equal |
| 196 | } |
| 197 | |
| 198 | // LesserEqual returns true when the two vectors are equivalent or v is Lesser |
| 199 | // than b. |