Tomas Dvorak

Results 34 comments of Tomas Dvorak

Wouldn't this (haven't tried exactly, but use something similar in my code) work? ```rust let mut fg = Figure::new(); { let axes = fg.axes2d(); for i in 0..n { axes.points(...);...

Yeah, I keep hitting this issue as well, very annoying.

I ran into the same problem and have used your solution. A small enhancement: I think it's better to retrieve the UUID via ```r.nextObject().asInstanceOf[UUID]``` instead of your proposed ```UUID.fromString(r.nextString)``` Once...

Hello, anybody has an opinion on this?

Useful links: https://stackoverflow.com/a/47113822 https://github.com/rust-lang/cargo/issues/1982

There's a discussion on how to do that in the "useful links" mentioned above.

/cc @micouy Any thoughts on this yet? IMHO it would be the best and easiest to just make the CLI another example. I'm willing to do a PR if you...

I like it the way it works now. If this issue is implemented, I'd love an option to use the current behavior.

@becheran It was me writing about the `{#id}` syntax. I use it when generating documents from Markdown using pandoc, the relevant docs are [here](https://pandoc.org/MANUAL.html#pandocs-markdown), look for *Heading identifiers*. I might...