Package org.eolang
Interface Data<T>
-
- Type Parameters:
T- Data type.
- All Known Implementing Classes:
Data.Once,Data.Value
public interface Data<T>A data container.- Since:
- 0.1
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classData.Once<T>Data being returned only once, from encapsulated object.static classData.ToPhistatic classData.Value<T>A single value asPhi.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Ttake()Take the data.
-
-
-
Method Detail
-
take
T take()
Take the data.- Returns:
- The data
-
-