CoordinateSet
trait: get_coord/set_coord
should be get/set
#104
Labels
CoordinateSet
trait: get_coord/set_coord
should be get/set
#104
According to the Rust API guidelines, when only one thing could be reasonably gotten/sat, the corresponding methods should be named
get
andset
respectively.Hence the
CoordinateSet
methodsget_coord(i)
andset_coord(i, value)
should be deprecated, replaced byget(i)
andset(i, value)
, and eventually removed.The text was updated successfully, but these errors were encountered: