Takes in a Typesafe config object and splits it into a cross-joined Sequence of Map[String, Any]]
Unwraps a Typesafe Config object into a Map[String, Seq[Any]].
Unwraps a Typesafe Config object into a Map[String, Seq[Any]]. Parameters that are not already in a list format will be wrapped in a Seq().
Example:
{ a = "blah" b = [1, 2] c = ["cool", "stuff"] }
is unwrapped and transformed to:
Map( "a" -> Seq("blah"), "b" -> Seq(1, 2), "c" -> Seq("cool", "stuff") )
Utility method to get a piece of the config by the key name.
Splits a Map of String to Sequences in a map of string to individual Any items.