Stanisław Barzowski

Results 159 comments of Stanisław Barzowski

Not really. The comprehensions only support a single field pattern. Also you can't wrap the fields in ifs like that. If you have a proposition how that could work, we...

@frimik Oh, I'm afraid you're right.

Here's an example implementation of proposed _'replace each instance of character x with an instance of character y'_ ``` local replaceChars(str, mapping) = std.join("", std.map(function(c) if c in mapping then...

Well, there is this thing: https://github.com/glenn-brown/golang-pkg-pcre. This is an interface to libpcre. It seems to hardcode assumptions about where libpcre is installed, though... I couldn't find anything else. Probably using...

Nice > In particular, note that a YAML file is actually an array (aka stream) of YAML-encoded values, which implies a function signature slightly different to an otherwise-similar parseJson Perhaps...

The `std.parseJson` part is released. There is no concrete progress on `parseYaml`/`parseYamlStream`. We currently have quite a few things in the queue, so it's going to be a while until...

@aglover-zendesk Just to be clear, it would still be possible to explicitly add the directory that you are interested in (by adding them to Jsonnet library path, e.g. `jsonnet -J...

Thanks for the feedback. FYI there are no immediate plans to enforce FS sandboxing for importing and if we come back to this in the future, we'll try to do...

We already have parseJson. I would like to have parseYaml in the next release. We have go-jsonnet implementation ready. We need to add it here as well. There is more...

To be closed when we update the docs