Package hydra.ext.haskell.ast
Class Type.Tuple
- java.lang.Object
-
- hydra.ext.haskell.ast.Type
-
- hydra.ext.haskell.ast.Type.Tuple
-
- All Implemented Interfaces:
java.io.Serializable
- Enclosing class:
- Type
public static final class Type.Tuple extends Type implements java.io.Serializable
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class hydra.ext.haskell.ast.Type
Type.Application, Type.Ctx, Type.Function, Type.Infix, Type.List, Type.Parens, Type.PartialVisitor<R>, Type.Tuple, Type.Variable, Type.Visitor<R>
-
-
Field Summary
Fields Modifier and Type Field Description java.util.List<Type>
value
-
Fields inherited from class hydra.ext.haskell.ast.Type
FIELD_NAME_APPLICATION, FIELD_NAME_CTX, FIELD_NAME_FUNCTION, FIELD_NAME_INFIX, FIELD_NAME_LIST, FIELD_NAME_PARENS, FIELD_NAME_TUPLE, FIELD_NAME_VARIABLE, TYPE_NAME
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> R
accept(Type.Visitor<R> visitor)
boolean
equals(java.lang.Object other)
int
hashCode()
-
-
-
Field Detail
-
value
public final java.util.List<Type> value
-
-
Constructor Detail
-
Tuple
public Tuple(java.util.List<Type> value)
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object other)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
accept
public <R> R accept(Type.Visitor<R> visitor)
-
-