On this page
EnvVars
primitive val EnvVars
Constructors
create
new val create()
: EnvVars val^
Returns
- EnvVars val^
Public Functions
apply
Turns an array of strings that look like environment variables, ie. key=value, into a map of string to string. Can optionally filter for keys matching a 'prefix', and will squash resulting keys to lowercase iff 'squash' is true.
So:
fun box apply(
envs: (Array[String val] box | None val),
prefix: String val = "",
squash: Bool val = false)
: HashMap[String val, String val, HashEq[String val] val] val
Parameters
Returns
eq
fun box eq(
that: EnvVars val)
: Bool val
Parameters
- that: EnvVars val
Returns
- Bool val
ne
fun box ne(
that: EnvVars val)
: Bool val
Parameters
- that: EnvVars val
Returns
- Bool val
© 2016-2020, The Pony Developers
© 2014-2015, Causality Ltd.
Licensed under the BSD 2-Clause License.
https://stdlib.ponylang.io/cli-EnvVars