com.github.johnreedlol.conversions

ImplicitPrint

final class ImplicitPrint[MyType] extends AnyVal

Wrapper class for implicit conversion .print methods

Linear Supertypes
AnyVal, NotNull, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ImplicitPrint
  2. AnyVal
  3. NotNull
  4. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ImplicitPrint(me: MyType)

Value Members

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

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

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

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

    Definition Classes
    Any
  5. def getClass(): Class[_ <: AnyVal]

    Definition Classes
    AnyVal → Any
  6. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  7. val me: MyType

  8. final def print(): MyType

    Same as System.

    Same as System.out.print(this), but with the function name after the object

    returns

    the thing that was just printed

    Example:
    1. if(foo.print) { /* do something with foo */}

  9. final def printErr(): MyType

    Same as System.

    Same as System.err.print(this), but with the function name after the object

    returns

    the thing that was just printed

    Example:
    1. if(foo.printStdErr) { /* do something with foo */}

  10. final def println(): MyType

    Same as System.

    Same as System.out.println(this), but with the function name after the object

    returns

    the thing that was just printed

    Example:
    1. if(foo.println) { /* do something with foo */}

  11. final def printlnErr(): MyType

    Same as System.

    Same as System.err.println(this), but with the function name after the object

    returns

    the thing that was just printed

    Example:
    1. if(foo.printlnStdErr) { /* do something with foo */}

  12. def toString(): String

    Definition Classes
    Any

Inherited from AnyVal

Inherited from NotNull

Inherited from Any

Ungrouped