代码搜索:Iterator
找到约 10,000 项符合「Iterator」的源代码
代码结果 10,000
www.eeworm.com/read/185314/5238090
java iterator.java
package com.wrox.algorithms.iteration;
/**
* Iterator based on that defined in Design Patterns (Gamma et. al).
*
*/
public interface Iterator {
/**
* (Re)positions the iterator to the fir
www.eeworm.com/read/185070/5242116
cs iterator.cs
using System;
namespace SimpleIterator
{
///
/// Summary description for Iterator.
///
public interface Iterator {
object First();
object Next();
bool isDone
www.eeworm.com/read/181243/5277394
java iterator.java
package headfirst.iterator.dinermerger;
public interface Iterator {
boolean hasNext();
Object next();
}
www.eeworm.com/read/179904/5301463
java iterator.java
/* Copyright (c) 2001-2005, The HSQL Development Group
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the
www.eeworm.com/read/179311/5306256
h iterator.h
/*
* Copyright (c) 1999 Boris Fomitchev
* AUTOMATICALLY GENERATED - DO NOT EDIT !
*/
/*
*
* This wrapper is needed for Borland C++ 5.0 to get STLport
* header properly included
*/
www.eeworm.com/read/179311/5306312
h iterator.h
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Copyright (c) 1996,1997
* Silicon Graphics Computer Systems, Inc.
*
* Copyright (c) 1997
* Moscow Center for SPARC Technology
www.eeworm.com/read/179153/5309547
pm iterator.pm
package Test::Harness::Iterator;
use strict;
use vars qw($VERSION);
$VERSION = 0.02;
=head1 NAME
Test::Harness::Iterator - Internal Test::Harness Iterator
=head1 SYNOPSIS
use Test::Harness::Ite
www.eeworm.com/read/173175/5376039
hpp iterator.hpp
//-----------------------------------------------------------------------------
// boost mpl/aux_/range_c/iterator.hpp header file
// See http://www.boost.org for updates, documentation, and revision
www.eeworm.com/read/168845/5430426
hpp is_iterator.hpp
/*=============================================================================
Copyright (c) 2003 Joel de Guzman
Use, modification and distribution is subject to the Boost Software
L