Example #1
0
 public void TestRead()
 {
     blob.store(5);
     mappedBlob.read().get.getOrThrow.shouldEqual("5");
 }
Example #2
0
 public Option <Try <B> > read() => backing.read().map(_ => _.map(bimap.map));
Example #3
0
 public void TestStore()
 {
     mappedBlob.store("3");
     blob.read().get.getOrThrow.shouldEqual(3);
 }