Object

org.platanios.tensorflow.api.tensors.ops

Basic

Related Doc: package ops

Permalink

object Basic extends Basic

Linear Supertypes
Basic, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Basic
  2. Basic
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def batchToSpace[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], blockSize: Int, crops: Tensor[I]): Tensor[D]

    Permalink

    $OpDocBasicBatchToSpace

    $OpDocBasicBatchToSpace

    input

    4-dimensional input tensor with shape [batch, height, width, depth].

    blockSize

    Block size which must be greater than 1.

    crops

    2-dimensional tensor containing non-negative integers with shape [2, 2].

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  6. def batchToSpaceND[D <: types.DataType, I1 <: Int32OrInt64, I2 <: Int32OrInt64](input: Tensor[D], blockShape: Tensor[I1], crops: Tensor[I2]): Tensor[D]

    Permalink

    $OpDocBasicBatchToSpaceND

    $OpDocBasicBatchToSpaceND

    input

    N-dimensional tensor with shape inputShape = [batch] + spatialShape + remainingShape, where spatialShape has M dimensions.

    blockShape

    One-dimensional tensor with shape [M] whose elements must all be >= 1.

    crops

    Two-dimensional tensor with shape [M, 2] whose elements must all be non-negative. crops(i) = [cropStart, cropEnd] specifies the amount to crop from input dimension i + 1, which corresponds to spatial dimension i. It is required that cropStart(i) + cropEnd(i) <= blockShape(i) * inputShape(i + 1).

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  7. def booleanMask[D <: types.DataType](input: Tensor[D], mask: Tensor[types.BOOLEAN]): Tensor[D]

    Permalink

    $OpDocBasicBooleanMask

    $OpDocBasicBooleanMask

    input

    N-dimensional tensor.

    mask

    K-dimensional boolean tensor, where K <= N and K must be known statically.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  8. def checkNumerics[D <: DecimalDataType](input: Tensor[D], message: String = ""): Tensor[D]

    Permalink

    $OpDocBasicCheckNumerics

    $OpDocBasicCheckNumerics

    input

    Input tensor.

    message

    Prefix to print for the error message.

    returns

    Result as a new tensor which has the same value as the input tensor.

    Definition Classes
    Basic
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def concatenate[D <: types.DataType](inputs: Seq[Tensor[D]], axis: Tensor[types.INT32] = 0): Tensor[D]

    Permalink

    $OpDocBasicConcatenate

    $OpDocBasicConcatenate

    inputs

    Input tensors to be concatenated.

    axis

    Dimension along which to concatenate the input tensors.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  11. def depthToSpace[D <: types.DataType](input: Tensor[D], blockSize: Int, dataFormat: ops.NN.CNNDataFormat = CNNDataFormat.default): Tensor[D]

    Permalink

    $OpDocBasicDepthToSpace

    $OpDocBasicDepthToSpace

    input

    4-dimensional input tensor with shape [batch, height, width, depth].

    blockSize

    Block size which must be greater than 1.

    dataFormat

    Format of the input and output data.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  12. def editDistance[D <: types.DataType](hypothesis: SparseTensor[D], truth: SparseTensor[D], normalize: Boolean = true): Tensor[types.FLOAT32]

    Permalink

    $OpDocBasicEditDistance

    $OpDocBasicEditDistance

    hypothesis

    Sparse tensor that contains the hypothesis sequences.

    truth

    Sparse tensor that contains the truth sequences.

    normalize

    Optional boolean value indicating whether to normalize the Levenshtein distance by the length of truth.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  13. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  15. def expandDims[D <: types.DataType](input: Tensor[D], axis: Tensor[types.INT32]): Tensor[D]

    Permalink

    $OpDocBasicExpandDims

    $OpDocBasicExpandDims

    input

    Input tensor.

    axis

    Dimension index at which to expand the shape of input.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  16. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  17. def gather[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], indices: Tensor[I], axis: Tensor[I] = null): Tensor[D]

    Permalink

    $OpDocBasicGather

    $OpDocBasicGather

    input

    Tensor from which to gather values.

    indices

    Tensor containing indices to gather.

    axis

    Tensor containing the axis along which to gather.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  18. def gatherND[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], indices: Tensor[I]): Tensor[D]

    Permalink

    $OpDocBasicGatherND

    $OpDocBasicGatherND

    input

    Tensor from which to gather values.

    indices

    Tensor containing indices to gather.

    returns

    Result as a new tensor which contains the values from input gathered from indices given by indices, with shape indices.shape(::-1) + input.shape(indices.shape(-1)::).

    Definition Classes
    Basic
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  21. def indexedSlicesMask[D <: types.DataType](input: TensorIndexedSlices[D], maskIndices: Tensor[types.INT32]): TensorIndexedSlices[D]

    Permalink

    $OpDocBasicIndexedSlicesMask

    $OpDocBasicIndexedSlicesMask

    input

    Input indexed slices.

    maskIndices

    One-dimensional tensor containing the indices of the elements to mask.

    returns

    Result as a new tensor indexed slices object.

    Definition Classes
    Basic
    Annotations
    @throws( ... )
  22. def invertPermutation[I <: Int32OrInt64](input: Tensor[I]): Tensor[I]

    Permalink

    $OpDocBasicInvertPermutation

    $OpDocBasicInvertPermutation

    input

    One-dimensional input tensor.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  23. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  24. def listDiff[D <: types.DataType, I <: Int32OrInt64](x: Tensor[D], y: Tensor[D], indicesDataType: I): (Tensor[D], Tensor[I])

    Permalink

    $OpDocBasicListDiff

    $OpDocBasicListDiff

    x

    One-dimensional tensor containing the values to keep.

    y

    One-dimensional tensor containing the values to remove.

    indicesDataType

    Data type to use for the output indices of this op.

    returns

    Tuple containing output and indices, from the method description.

    Definition Classes
    Basic
  25. def listDiff[D <: types.DataType](x: Tensor[D], y: Tensor[D]): (Tensor[D], Tensor[types.INT32])

    Permalink

    $OpDocBasicListDiff

    $OpDocBasicListDiff

    x

    One-dimensional tensor containing the values to keep.

    y

    One-dimensional tensor containing the values to remove.

    returns

    Tuple containing output and indices, from the method description.

    Definition Classes
    Basic
  26. def matrixTranspose[D <: types.DataType](input: Tensor[D], conjugate: Boolean = false): Tensor[D]

    Permalink

    $OpDocBasicMatrixTranspose

    $OpDocBasicMatrixTranspose

    input

    Input tensor to transpose.

    conjugate

    If true, then the complex conjugate of the transpose result is returned.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
    Annotations
    @throws( ... )
    Exceptions thrown

    InvalidShapeException If the input tensor has rank <= 2.

  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. def oneHot[D <: types.DataType, I <: UInt8OrInt32OrInt64](indices: Tensor[I], depth: Tensor[types.INT32], onValue: Tensor[D] = null, offValue: Tensor[D] = null, axis: Int = 1, dataType: types.DataType = null): Tensor[D]

    Permalink

    $OpDocBasicOneHot

    $OpDocBasicOneHot

    indices

    Tensor containing the indices for the "on" values.

    depth

    Scalar tensor defining the depth of the one-hot dimension.

    onValue

    Scalar tensor defining the value to fill in the output ith value, when indices[j] = i. Defaults to the value 1 with type dataType.

    offValue

    Scalar tensor defining the value to fill in the output ith value, when indices[j] != i. Defaults to the value 0 with type dataType.

    axis

    Axis to fill. Defaults to -1, representing the last axis.

    dataType

    Data type of the output tensor. If not provided, the function will attempt to assume the data type of onValue or offValue, if one or both are passed in. If none of onValue, offValue, or dataType are provided, dataType will default to the FLOAT32 data type.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  31. def pad[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], paddings: Tensor[I], mode: ops.Basic.PaddingMode = ConstantPadding(Some(Tensor(0)))): Tensor[D]

    Permalink

    $OpDocBasicPad

    $OpDocBasicPad

    input

    Input tensor to be padded.

    paddings

    Tensor containing the paddings.

    mode

    Padding mode to use.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  32. def parallelStack[D <: types.DataType](inputs: Array[Tensor[D]]): Tensor[D]

    Permalink

    $OpDocBasicParallelStack

    $OpDocBasicParallelStack

    inputs

    Input tensors to be stacked.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  33. def preventGradient[D <: types.DataType](input: Tensor[D], message: String = ""): Tensor[D]

    Permalink

    $OpDocBasicPreventGradient

    $OpDocBasicPreventGradient

    input

    Input tensor.

    message

    Message to print along with the error.

    returns

    Result as a new tensor which has the same value as the input tensor.

    Definition Classes
    Basic
  34. def rank[T <: TensorLike[_]](input: T): Tensor[types.INT32]

    Permalink

    $OpDocBasicRank

    $OpDocBasicRank

    input

    Tensor whose rank to return.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  35. def requiredSpaceToBatchPaddingsAndCrops(inputShape: Tensor[types.INT32], blockShape: Tensor[types.INT32], basePaddings: Tensor[types.INT32] = null): (Tensor[types.INT32], Tensor[types.INT32])

    Permalink

    $OpDocBasicRequiredSpaceToBatchPaddingsAndCrops

    $OpDocBasicRequiredSpaceToBatchPaddingsAndCrops

    inputShape

    Tensor with shape [N].

    blockShape

    Tensor with shape [N].

    basePaddings

    Optional tensor with shape [N, 2] that specifies the minimum amount of padding to use. All elements must be non-negative. Defaults to a tensor containing all zeros.

    returns

    Tuple containing the paddings and crops required.

    Definition Classes
    Basic
    Annotations
    @throws( ... )
    Exceptions thrown

    InvalidShapeException If inputShape, blockShape, or basePaddings, has invalid shape.

  36. def reshape[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], shape: Tensor[I]): Tensor[D]

    Permalink

    $OpDocBasicReshape

    $OpDocBasicReshape

    input

    Input tensor.

    shape

    Shape of the output tensor.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  37. def reverse[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], axes: Tensor[I]): Tensor[D]

    Permalink

    $OpDocBasicReverse

    $OpDocBasicReverse

    input

    Input tensor to reverse. It must have rank at most 8.

    axes

    Dimensions of the input tensor to reverse.

    returns

    Result as a new tensor which has the same shape as input.

    Definition Classes
    Basic
  38. def reverseSequence[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], sequenceLengths: Tensor[I], sequenceAxis: Int, batchAxis: Int = 0): Tensor[D]

    Permalink

    $OpDocBasicReverseSequence

    $OpDocBasicReverseSequence

    input

    Input tensor to reverse.

    sequenceLengths

    One-dimensional tensor with length input.shape(batchAxis) and max(sequenceLengths) <= input.shape(sequenceAxis).

    sequenceAxis

    Tensor dimension which is partially reversed.

    batchAxis

    Tensor dimension along which the reversal is performed.

    returns

    Result as a new tensor which has the same shape as input.

    Definition Classes
    Basic
  39. def scatterND[D <: types.DataType, I <: Int32OrInt64](indices: Tensor[I], updates: Tensor[D], shape: Tensor[I]): Tensor[D]

    Permalink

    $OpDocBasicScatterND

    $OpDocBasicScatterND

    indices

    Indices tensor.

    updates

    Updates to scatter into the output tensor.

    shape

    One-dimensional tensor specifying the shape of the output tensor.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  40. def sequenceMask[D <: NumericDataType](lengths: Tensor[D], maxLength: Tensor[D] = null): Tensor[types.BOOLEAN]

    Permalink

    $OpDocBasicSequenceMask

    $OpDocBasicSequenceMask

    lengths

    One-dimensional integer tensor containing the lengths to keep for each row. If maxLength is provided, then all values in lengths must be smaller than maxLength.

    maxLength

    Scalar integer tensor representing the maximum length of each row. Defaults to the maximum value in lengths.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
    Annotations
    @throws( ... )
    Exceptions thrown

    IllegalArgumentException If maxLength is not a scalar.

  41. def shape[T <: TensorLike[_], DR <: types.DataType](input: T, dataType: DR): Tensor[DR]

    Permalink

    $OpDocBasicShape

    $OpDocBasicShape

    input

    Tensor whose shape to return.

    dataType

    Optional data type to use for the output of this op.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  42. def shape[T <: TensorLike[_]](input: T): Tensor[types.INT64]

    Permalink

    $OpDocBasicShape

    $OpDocBasicShape

    input

    Tensor whose shape to return.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  43. def shapeN[DR <: types.DataType](inputs: Seq[Tensor[_]], dataType: DR): Seq[Tensor[DR]]

    Permalink

    $OpDocBasicShapeN

    $OpDocBasicShapeN

    inputs

    Tensors whose shapes to return.

    dataType

    Optional data type to use for the outputs of this op.

    returns

    Result as a sequence of new tensors.

    Definition Classes
    Basic
  44. def shapeN(inputs: Seq[Tensor[_]]): Seq[Tensor[types.INT64]]

    Permalink

    $OpDocBasicShapeN

    $OpDocBasicShapeN

    inputs

    Tensors whose shapes to return.

    returns

    Result as a sequence of new tensors.

    Definition Classes
    Basic
  45. def size[T <: TensorLike[_], DR <: ReducibleDataType](input: T, dataType: DR): Tensor[DR]

    Permalink

    $OpDocBasicSize

    $OpDocBasicSize

    input

    Tensor whose size to return.

    dataType

    Optional data type to use for the output of this op.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  46. def size[T <: TensorLike[_]](input: T): Tensor[types.INT64]

    Permalink

    $OpDocBasicSize

    $OpDocBasicSize

    input

    Tensor whose size to return.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  47. def spaceToBatch[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], blockSize: Int, paddings: Tensor[I]): Tensor[D]

    Permalink

    $OpDocBasicSpaceToBatch

    $OpDocBasicSpaceToBatch

    input

    4-dimensional input tensor with shape [batch, height, width, depth].

    blockSize

    Block size which must be greater than 1.

    paddings

    2-dimensional tensor containing non-negative integers with shape [2, 2].

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  48. def spaceToBatchND[D <: types.DataType, I1 <: Int32OrInt64, I2 <: Int32OrInt64](input: Tensor[D], blockShape: Tensor[I1], paddings: Tensor[I2]): Tensor[D]

    Permalink

    $OpDocBasicSpaceToBatchND

    $OpDocBasicSpaceToBatchND

    input

    N-dimensional tensor with shape inputShape = [batch] + spatialShape + remainingShape, where spatialShape has M dimensions.

    blockShape

    One-dimensional tensor with shape [M] whose elements must all be >= 1.

    paddings

    Two-dimensional tensor with shape [M, 2] whose elements must all be non-negative. paddings(i) = [padStart, padEnd] specifies the padding for input dimension i + 1, which corresponds to spatial dimension i. It is required that blockShape(i) divides inputShape(i + 1) + padStart + padEnd.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  49. def spaceToDepth[D <: types.DataType](input: Tensor[D], blockSize: Int, dataFormat: ops.NN.CNNDataFormat = CNNDataFormat.default): Tensor[D]

    Permalink

    $OpDocBasicSpaceToDepth

    $OpDocBasicSpaceToDepth

    input

    4-dimensional input tensor with shape [batch, height, width, depth].

    blockSize

    Block size which must be greater than 1.

    dataFormat

    Format of the input and output data.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  50. def split[D <: types.DataType, I <: IntOrUInt](input: Tensor[D], splitSizes: Tensor[I], axis: Tensor[types.INT32] = 0): Seq[Tensor[D]]

    Permalink

    $OpDocBasicSplit

    $OpDocBasicSplit

    input

    Input tensor to split.

    splitSizes

    Sizes for the splits to obtain.

    axis

    Dimension along which to split the input tensor.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  51. def splitEvenly[D <: types.DataType](input: Tensor[D], numSplits: Int, axis: Tensor[types.INT32] = 0): Seq[Tensor[D]]

    Permalink

    $OpDocBasicSplitEvenly

    $OpDocBasicSplitEvenly

    input

    Input tensor to split.

    numSplits

    Number of splits to obtain along the axis dimension.

    axis

    Dimension along which to split the input tensor.

    returns

    Result as a sequence of new tensors.

    Definition Classes
    Basic
  52. def squeeze[D <: types.DataType](input: Tensor[D], axes: Seq[Int] = null): Tensor[D]

    Permalink

    $OpDocBasicSqueeze

    $OpDocBasicSqueeze

    input

    Input tensor.

    axes

    Dimensions of size 1 to squeeze. If this argument is not provided, then all dimensions of size 1 will be squeezed.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  53. def stack[D <: types.DataType](inputs: Seq[Tensor[D]], axis: Int = 0): Tensor[D]

    Permalink

    $OpDocBasicStack

    $OpDocBasicStack

    inputs

    Input tensors to be stacked.

    axis

    Dimension along which to stack the input tensors.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  54. def stopGradient[D <: types.DataType](input: Tensor[D]): Tensor[D]

    Permalink

    $OpDocBasicStopGradient

    $OpDocBasicStopGradient

    input

    Input tensor.

    returns

    Result as a new tensor which has the same value as the input tensor.

    Definition Classes
    Basic
  55. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  56. def tile[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], multiples: Tensor[I]): Tensor[D]

    Permalink

    $OpDocBasicTile

    $OpDocBasicTile

    input

    Tensor to tile.

    multiples

    One-dimensional tensor containing the tiling multiples. Its length must be the same as the rank of input.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  57. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  58. def transpose[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], permutation: Tensor[I] = null, conjugate: Boolean = false): Tensor[D]

    Permalink

    $OpDocBasicTranspose

    $OpDocBasicTranspose

    input

    Input tensor to transpose.

    permutation

    Permutation of the input tensor dimensions.

    conjugate

    If true, then the complex conjugate of the transpose result is returned.

    returns

    Result as a new tensor.

    Definition Classes
    Basic
  59. def unique[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], indicesDataType: I): (Tensor[D], Tensor[I])

    Permalink

    $OpDocBasicUnique

    $OpDocBasicUnique

    input

    One-dimensional input tensor.

    indicesDataType

    Data type of the returned indices.

    returns

    Tuple containing output and indices.

    Definition Classes
    Basic
  60. def unique[D <: types.DataType](input: Tensor[D]): (Tensor[D], Tensor[types.INT32])

    Permalink

    $OpDocBasicUnique

    $OpDocBasicUnique

    input

    One-dimensional input tensor.

    returns

    Tuple containing output and indices.

    Definition Classes
    Basic
  61. def uniqueWithCounts[D <: types.DataType, I <: Int32OrInt64](input: Tensor[D], indicesDataType: I): (Tensor[D], Tensor[I], Tensor[I])

    Permalink

    $OpDocBasicUniqueWithCounts

    $OpDocBasicUniqueWithCounts

    input

    One-dimensional input tensor.

    indicesDataType

    Data type of the returned indices.

    returns

    Tuple containing output, indices, and counts.

    Definition Classes
    Basic
  62. def uniqueWithCounts[D <: types.DataType](input: Tensor[D]): (Tensor[D], Tensor[types.INT32], Tensor[types.INT32])

    Permalink

    $OpDocBasicUniqueWithCounts

    $OpDocBasicUniqueWithCounts

    input

    One-dimensional input tensor.

    returns

    Tuple containing output, indices, and counts.

    Definition Classes
    Basic
  63. def unstack[D <: types.DataType](input: Tensor[D], number: Int = 1, axis: Int = 0): Seq[Tensor[D]]

    Permalink

    $OpDocBasicUnstack

    $OpDocBasicUnstack

    input

    Rank R > 0 Tensor to be unstacked.

    number

    Number of tensors to unstack. If set to -1 (the default value), its value will be inferred.

    axis

    Dimension along which to unstack the input tensor.

    returns

    Result as a sequence of new tensors.

    Definition Classes
    Basic
  64. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  65. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  66. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  67. def where(input: Tensor[types.BOOLEAN]): Tensor[types.INT64]

    Permalink

    $OpDocBasicWhere

    $OpDocBasicWhere

    input

    Input boolean tensor.

    returns

    Result as a new tensor.

    Definition Classes
    Basic

Inherited from Basic

Inherited from AnyRef

Inherited from Any

BasicOps

Ungrouped