Uses of Record Class
cloud.opencode.base.core.tuple.Triple
Packages that use Triple
-
Uses of Triple in cloud.opencode.base.core.tuple
Methods in cloud.opencode.base.core.tuple that return TripleModifier and TypeMethodDescriptionstatic <A,B, C> Triple <A, B, C> Triple.empty()Creates an empty Triple 创建空三元组static <A,B, C> Triple <A, B, C> TupleUtil.emptyTriple()Creates an empty Triple 创建空三元组<T,U, V> Triple <T, U, V> Triple.map(Function<? super A, ? extends T> firstMapper, Function<? super B, ? extends U> secondMapper, Function<? super C, ? extends V> thirdMapper) Maps all elements simultaneously 同时映射所有元素Maps the first element 映射第一个元素Maps the second element 映射第二个元素Maps the third element 映射第三个元素static <A,B, C> Triple <A, B, C> Triple.of(A first, B second, C third) Creates a Triple 创建三元组Quadruple.toFirstTriple()Extracts the first three elements as a Triple 提取前三个元素为 TripleQuadruple.toLastTriple()Extracts the last three elements as a Triple 提取后三个元素为 Triplestatic <A,B, C> Triple <A, B, C> TupleUtil.triple(A first, B second, C third) Creates a Triple 创建三元组