Stdin 类
进程的标准输入流。
允许从标准输入流进行同步和异步读取。
同步和异步读取的混合是未定义的。
属性
- echoMode ↔ bool
- 是否在 stdin 上启用回显模式。getter/setter 对
- echoNewlineMode ↔ bool
- 是否在 stdin 上启用回显换行模式。getter/setter 对
-
first → Future<
List< int> > - 此流的第一个元素。无setter继承
- hashCode → int
- 此对象的哈希码。无setter继承
- hasTerminal → bool
- 是否在 stdin 上连接了终端。无setter
- isBroadcast → bool
- 此流是否为广播流。无setter继承
-
isEmpty → Future<
bool> - 此流是否包含任何元素。无setter继承
-
last → Future<
List< int> > - 此流的最后一个元素。无setter继承
-
length → Future<
int> - 此流中元素的数量。无setter继承
- lineMode ↔ bool
- 是否在 stdin 上启用行模式。getter/setter 对
- runtimeType → Type
- 对象运行时类型的表示。无setter继承
-
single → Future<
List< int> > - 此流的单个元素。无setter继承
- supportsAnsiEscapes → bool
- 是否连接到一个支持ANSI转义序列的终端。无setter
方法
-
any(
bool test(List< int> element)) → Future<bool> - 检查此流提供的任何元素是否被
test
接受。继承 -
asBroadcastStream(
{void onListen(StreamSubscription< List< subscription)?, void onCancel(StreamSubscription<int> >List< subscription)?}) → Stream<int> >List< int> > - 返回一个可以产生与该流相同事件的多个订阅流。继承
-
asyncExpand<
E> (Stream< E> ? convert(List<int> event)) → Stream<E> - 将每个元素转换为异步事件序列。继承
-
asyncMap<
E> (FutureOr< E> convert(List<int> event)) → Stream<E> - 创建一个新的流,该流的每个数据事件都异步映射到新的事件。继承
-
cast<
R> () → Stream< R> - 将此流调整为
Stream<R>
。继承 -
contains(
Object? needle) → Future< bool> - 返回
needle
是否出现在此流提供的元素中。继承 -
distinct(
[bool equals(List< int> previous, List<int> next)?]) → Stream<List< int> > - 如果数据事件与上一个数据事件相同,则跳过数据事件。继承
-
drain<
E> ([E? futureValue]) → Future< E> - 丢弃此流上的所有数据,但在完成或发生错误时发出信号。继承
-
elementAt(
int index) → Future< List< int> > - 返回此流第
index
个数据事件的值。继承 -
every(
bool test(List< int> element)) → Future<bool> - 检查
test
是否接受此流提供的所有元素。继承 -
expand<
S> (Iterable< S> convert(List<int> element)) → Stream<S> - 将此流的每个元素转换为元素序列。继承
-
firstWhere(
bool test(List< int> element), {List<int> orElse()?}) → Future<List< int> > - 查找该流中第一个匹配
test
的元素。继承 -
fold<
S> (S initialValue, S combine(S previous, List< int> element)) → Future<S> - 通过重复应用
combine
来组合一系列值。继承 -
forEach(
void action(List< int> element)) → Future<void> - 对该流中的每个元素执行
action
。继承 -
handleError(
Function onError, {bool test(dynamic error)?}) → Stream< List< int> > - 创建一个包装流,用于拦截该流的一些错误。继承
-
join(
[String separator = ""]) → Future< String> - 将元素的字面表示组合成一个字符串。继承
-
lastWhere(
bool test(List< int> element), {List<int> orElse()?}) → Future<List< int> > - 在当前流中查找符合
test
条件的最后一个元素。继承 -
listen(
void onData(List< int> event)?, {Function? onError, void onDone()?, bool? cancelOnError}) → StreamSubscription<List< int> > - 为此流添加一个订阅。继承
-
map<
S> (S convert(List< int> event)) → Stream<S> - 将当前流的每个元素转换成新的流事件。继承
-
noSuchMethod(
Invocation invocation) → dynamic - 当访问不存在的方法或属性时被调用。继承
-
pipe(
StreamConsumer< List< streamConsumer) → Futureint> > - 将此流的每个事件传入
streamConsumer
。继承 -
readByteSync(
) → int - 从 stdin 同步读取一个字节。
-
readLineSync(
{Encoding encoding = systemEncoding, bool retainNewlines = false}) → String? - 从stdin读取一行。
-
reduce(
List< int> combine(List<int> previous, List<int> element)) → Future<List< int> > - 通过重复应用
combine
来组合一系列值。继承 -
singleWhere(
bool test(List< int> element), {List<int> orElse()?}) → Future<List< int> > - 查找匹配
test
的此流中的单个元素。继承 -
skip(
int count) → Stream< List< int> > - 跳过此流的第一个
count
个数据事件。继承 -
skipWhile(
bool test(List< int> element)) → Stream<List< int> > - 在数据事件匹配
test
时跳过此流的数据事件。继承 -
take(
int count) → Stream< List< int> > - 提供此流的前
count
个数据事件。继承 -
takeWhile(
bool test(List< int> element)) → Stream<List< int> > - 当
test
成功时,传递数据事件。继承 -
timeout(
Duration timeLimit, {void onTimeout(EventSink< List< sink)?}) → Stream<int> >List< int> > - 创建一个具有与该流相同事件的新的流。继承
-
toList(
) → Future< List< List< >int> > - 将此流的全部元素收集到一个 List 中。继承
-
toSet(
) → Future< Set< List< >int> > - 将此流的数据收集到一个 Set 中。继承
-
toString(
) → String - 此对象的字符串表示形式。继承
-
transform<
S> (StreamTransformer< List< streamTransformer) → Stream<int> , S>S> - 将
streamTransformer
应用到此流上。继承 -
where(
bool test(List< int> event)) → Stream<List< int> > - 从该流创建一个新的流,丢弃一些元素。继承
运算符
-
operator ==(
Object other) → bool - 等于运算符。继承