|
Scala example source code file (CaseInsensitiveUsage.scala)
The CaseInsensitiveUsage.scala Scala example source codepackage scalaz.example import scalaz.{CaseInsensitive => CI} object CaseInsensitiveUsage extends App { def maps() { val nums: Map[CI[String], Int] = Map(CI("ONE") -> 1, CI("Two") -> 2) assert(nums(CI("one")) == 1) assert(nums(CI("TWO")) == 2) } def sets() { val nums: Set[CI[String]] = Set(CI("ONE"), CI("Two")) assert(nums(CI("one"))) assert(nums(CI("TWO"))) } maps() sets() } Other Scala examples (source code examples)Here is a short list of links related to this Scala CaseInsensitiveUsage.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.