代码搜索:Wrox
找到约 2,023 项符合「Wrox」的源代码
代码结果 2,023
www.eeworm.com/read/185314/5238080
java filteriterator.java
package com.wrox.algorithms.iteration;
/**
* An {@link Iterator} that filters the results according to some {@link Predicate}.
*
*/
public class FilterIterator implements Iterator {
/** The un
www.eeworm.com/read/185314/5238091
java powercalculator.java
package com.wrox.algorithms.iteration;
/**
* Generic interface for calculating the value of one integer raised to the power of another.
*
*/
public interface PowerCalculator {
/**
* Calcu
www.eeworm.com/read/185314/5238092
java predicate.java
package com.wrox.algorithms.iteration;
/**
* Generic interface for specifying filter criteria.
*
*/
public interface Predicate {
/**
* Determines if the predicate holds for a specified o
www.eeworm.com/read/185314/5238108
java stringsearcher.java
package com.wrox.algorithms.ssearch;
/**
* A generic interface for string searching.
*
*/
public interface StringSearcher {
/**
* Searches for a match.
*
* @param text The text