Example #1
0
 private DataEnvelope PruningCleanupTombstoned(DataEnvelope envelope)
 {
     return(_tombstonedNodes.Aggregate(envelope, PruningCleanupTombstoned));
 }
Example #2
0
 public decimal TotalFunds()
 {
     return(_coins.Aggregate(decimal.Zero, (current, next) => current + next.Total));
 }