Operator

interfejs publiczny op
Znane podklasy pośrednie

Interfejs znacznika dla wszystkich opakowań operacyjnych.

Opakowania operacyjne zapewniają silnie wpisane interfejsy do operacji budowania i wykonania bez użycia literałów i indeksów, zgodnie z wymaganiami w klasach podstawowych.

Ten interfejs umożliwia prowadzenie odniesienia do dowolnego opakowania za pomocą wspólnego typu.

 // 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);
 

,
interfejs publiczny op
Znane pośrednie podklasy

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);