The optional-values tag has no wiki summary.
8
votes
2answers
109 views
How do I get interdependent options?
I want to do something like
foo[OptionsPattern[]] := OptionValue[b]
Options[foo] = {a -> 0, b :> OptionValue[a]};
foo[a -> 1]
and have Mathematica give me 1, instead of 0. Is there a ...
5
votes
1answer
159 views
Optionally adding items to a Scala Map
I am looking for an idiomatic solution to this problem.
I am building a val Scala (immutable) Map and would like to optionally add one or more items:
val aMap =
Map(key1 -> value1,
key2 ...