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
Is your feature request related to a problem? Please describe. Currently field
type Vertex struct { ... orderPos int ... }
is unexported. For extended debugging in external appliactions and import/export function we need to make getter/setter for it.
Describe the solution you'd like and provide pseudocode examples if you can Pretty simple getter/setter combo:
func (vertex *Vertex) OrderPos() int { return vertex.orderPos } func (vertex *Vertex) SetOrderPos(orderPos int){ vertex.orderPos = orderPos }
Describe alternatives you've considered and provide pseudocode examples if you can Nope
Additional context This issue is related to #11
The text was updated successfully, but these errors were encountered:
This is related to #11 since those two unexported fields could be useful for external applications (and export/import graph function)
Sorry, something went wrong.
LdDl
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
Currently field
is unexported.
For extended debugging in external appliactions and import/export function we need to make getter/setter for it.
Describe the solution you'd like and provide pseudocode examples if you can
Pretty simple getter/setter combo:
Describe alternatives you've considered and provide pseudocode examples if you can
Nope
Additional context
This issue is related to #11
The text was updated successfully, but these errors were encountered: