We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If we look at the Node API, we have:
def randomOutboundNodeSet(numResults: Int, rnd: Random): Seq[Int]: https://github.com/twitter/cassovary/blob/master/cassovary-core/src/main/scala/com/twitter/cassovary/graph/Node.scala#L123
def randomOutboundNodeSet(numResults: Int, rnd: Random): Seq[Int]
def outboundNodes(): CSeq[Int]: https://github.com/twitter/cassovary/blob/master/cassovary-core/src/main/scala/com/twitter/cassovary/graph/Node.scala#L89
def outboundNodes(): CSeq[Int]
Note that one returns a CSeq and the other returns a Seq. Should this be made consistent?
CSeq
Seq
The text was updated successfully, but these errors were encountered:
Good catch. Will fix.
Sorry, something went wrong.
No branches or pull requests
If we look at the Node API, we have:
def randomOutboundNodeSet(numResults: Int, rnd: Random): Seq[Int]
:https://github.com/twitter/cassovary/blob/master/cassovary-core/src/main/scala/com/twitter/cassovary/graph/Node.scala#L123
def outboundNodes(): CSeq[Int]
:https://github.com/twitter/cassovary/blob/master/cassovary-core/src/main/scala/com/twitter/cassovary/graph/Node.scala#L89
Note that one returns a
CSeq
and the other returns aSeq
. Should this be made consistent?The text was updated successfully, but these errors were encountered: