public interface ArraySearchingGopher<T>
A gopher for searching algorithms is an pluggable adapter that adapts a
generic array searching algorithm to a specific data structure. This
interface defines the minimum actions required by searching algorithms. It is
designed to be high-performance, so uses a memory register for compare-to
values rather than some kind of object accessor. This allows higher speed for
primitive searching or complex keys.
- Author:
- Paul Reavis Copyright 2003 Partner Software, Inc.