Operasyon

genel arayüz Op
Bilinen Dolaylı Alt Sınıflar

Tüm işlem sargıları için bir işaretleyici arayüzü.

İşlem sargıları, temel sınıflarda gerektiği gibi, gerçek ve dizinler kullanılmadan bina ve yürütme işlemleri için güçlü yazılmış arayüzler sağlar.

Bu arabirim, ortak bir tür kullanarak herhangi bir işlem sargısına referansların tutulmasını sağlar.

 // All values returned by an Ops call can be referred as a Op
 Op split = ops.array().split(...);
 Op shape = ops.array().shape(...);

 // All operations could be added to an Op collection
 Collection<Op> allOps = Arrays.asList(split, shape);
 

,
Genel Arayüz OP
Bilinen dolaylı alt sınıflar

A marker interface for all operation wrappers.

Operation wrappers provide strongly typed interfaces for building and execution operations without the use of literals and indexes, as required in the core classes.

This interface allows keeping references to any operation wrapper using a common type.

 // All values returned by an Ops call can be referred as a Op
 Op split = ops.array().split(...);
 Op shape = ops.array().shape(...);

 // All operations could be added to an Op collection
 Collection<Op> allOps = Arrays.asList(split, shape);