⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iteratoritems.java

📁 A framework written in Java for implementing high-level and dynamic languages, compiling them into J
💻 JAVA
字号:
// Copyright (c) 2002  Per M.A. Bothner and Brainfood Inc.// This is free software;  for terms and warranty disclaimer see ./COPYING.package gnu.kawa.xml;import gnu.mapping.*;import gnu.lists.*;/* #ifdef JAVA2 */import java.util.Iterator;/* #endif *//* A function that maps an Iterator into the sequence of ite elements. */public class IteratorItems extends MethodProc{  public static IteratorItems iteratorItems = new IteratorItems();  public void apply (CallContext ctx)  {    Consumer out = ctx.consumer;    Object arg = ctx.getNextArg();    ctx.lastArg();    /* #ifdef JAVA2 */    Iterator iter = (Iterator) arg;    /* #endif */    /* #ifndef JAVA2 */    // SeqPosition iter = (SeqPosition) arg;    /* #endif */    while (iter.hasNext())      {	Object val = iter.next();	Values.writeValues(val, out);      }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -