implicit class SCollectionWithResourceFunctions[T] extends AnyRef
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SCollectionWithResourceFunctions
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new SCollectionWithResourceFunctions(self: SCollection[T])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def collectWithResource[R, U](resource: => R, resourceType: ResourceType)(pfn: PartialFunction[(R, T), U])(implicit arg0: Coder[U]): SCollection[U]
Filter the elements for which the given
PartialFunction
that also takes in a resource andResourceType
is defined, and then map. - final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def filterWithResource[R](resource: => R, resourceType: ResourceType)(fn: (R, T) => Boolean): SCollection[T]
Return a new SCollection containing only the elements that satisfy a predicate that takes in a resource and
ResourceType
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def flatMapWithResource[R, U](resource: => R, resourceType: ResourceType)(fn: (R, T) => TraversableOnce[U])(implicit arg0: Coder[U]): SCollection[U]
Return a new SCollection by first applying a function that also takes in a resource and
ResourceType
to all elements of this SCollection, and then flattening the results. - final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapWithResource[R, U](resource: => R, resourceType: ResourceType)(fn: (R, T) => U)(implicit arg0: Coder[U]): SCollection[U]
Return a new SCollection by applying a function that also takes in a resource and
ResourceType
to all elements of this SCollection. - final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()