Mathieu Besançon

Results 249 comments of Mathieu Besançon

Sorry for the delay. I guess the simplest solution would be a go server and an R app taking input from stdin and outputing to stdout

PR very welcome to add these :)

Indeed the bug tag was my mistake, the github mobile interface is a bit of a pain

I've mostly noticed it for `add_edge!` `rem_edge!` `has_edge`

No I don't think we did. It is done for `has_edge`: https://github.com/JuliaGraphs/LightGraphs.jl/blob/stable/src/interface.jl#L277 But it is the only function using edges in the interface. So not for all mutation functions adding...

If we add a new property, does it mean we reset the NamedTuple with a new one? NamedTuples are immutable

Yes it would be ok if you store them as `Vector{NamedTuple}`. > Also NamedTuples are ordered and dictionaries are not, so there also another difference. Not sure this would change...