Spring – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using IntervalTree;
3  
4 namespace Spring.Utilities.Collections.RangeTree
5 {
6 public class RangeTreeAction<TU, TV> : IntervalTree<TU, Action<TU>>
7 {
8 #region Public Methods
9  
10 public new void Query(TU value)
11 {
12 foreach (var func in base.Query(value))
13 {
14 func.Invoke(value);
15 }
16 }
17  
18 #endregion
19 }
20 }