Re: Clojure/flutter

2018-04-27 Thread Didier
The thing about Clojure->native, is that Clojure needs a pretty powerful runtime. So we'd need to piggy back on something native that similarly has a strong runtime. Common Lisp maybe, or Go. I'd vote for Go. -- You received this message because you are subscribed to the Google Groups "Clojur

[ANN] parinfer-rust 0.2.0 (Vim plugin and library)

2018-04-27 Thread Jason Felice
... the first "ready for public consumption" release. One of the the initial reactions was, "This. Is. Awesome!" Just sayin'.parinfer-rust https://github.com/eraserhd/parinfer-rust A full-featured, super snappy port of Shaun Lebron's parinfer to Rust. T

Re: Clojure/flutter

2018-04-27 Thread Alan Moore
Or maybe a WebAssembly or LLVM target. Lots of reach from those ;-) Alan -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient

Re: Understanding GraalVM and Clojure

2018-04-27 Thread Egg Syntax
Karin Meier has done some experimentation using Clojure on GraalVM to call R and Python, and has a blog post and repo

[ANN] Insn 0.3.0 - Functional JVM bytecode generation for Clojure

2018-04-27 Thread jgpc42
Insn (github link ) provides a data-oriented abstraction over the ASM bytecode generation library. The same library that Clojure uses to emit Clojure code. Some of the new features since 0.2.0: - JVM version 9 bytecode support. - Java 9

Iterate through transient map?

2018-04-27 Thread Didier
Don't think so. But the conversion back and forth is O(1). So it shouldn't affect performance. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderate

Re: Clojure/flutter

2018-04-27 Thread Robert Levy
> > > Then there's the possibility of stealing flutter's thunder and writing > clj->native compilers. Everybody wants that. > > That would be awesome! > Gregg > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email

Re: Clojure/flutter

2018-04-27 Thread Gregg Reynolds
On Fri, Apr 27, 2018, 1:40 PM Robert Levy wrote: > dartjure? > darjure? > darture? > datura? > https://www.darts501.com/Terms.html > Well it's not just a question of how much effort it will take, but whether > the interest in Dart as a target (pun intended?) would be high enough to > sustain t

Re: Clojure/flutter

2018-04-27 Thread Robert Levy
dartjure? darjure? darture? datura? Well it's not just a question of how much effort it will take, but whether the interest in Dart as a target (pun intended?) would be high enough to sustain the project over time. On Thu, Apr 26, 2018 at 11:06 AM, Kees-Jochem Wehrmeijer wrote: > Flutter defini

Re: Clojure/flutter

2018-04-27 Thread Robert Levy
> > Oh yeah, I forgot to mention: hot reloading! Have you heard of it? It's > revolutionary! ;) > >> >> Gregg >> > Yeah I've seen that somewhere before, I forget where... ;) -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send e

Iterate through transient map?

2018-04-27 Thread Tom Locke
I can iterate through a transient vector, as count and nth can be used directly on the transient. Is there any way to iterate through the keys (or key/value pairs) of a transient hash, other than just making a persistent version of it? I guess the meta-question is, any advice on finding which f