sealed trait ParamList[A] extends AnyRef
Ordering
- Alphabetic
- By Inheritance
Inherited
- ParamList
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def constructValues(options: Map[String, ApplicationCommandInteractionDataOption[_]], resolved: ApplicationCommandInteractionDataResolved): Either[String, A]
Construct values from the specified interaction data.
- abstract def runAutocomplete(options: Map[String, ApplicationCommandInteractionDataOption[_]]): Seq[ApplicationCommandOptionChoice]
Runs autocomplete with the specified interaction data.
Concrete 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() @IntrinsicCandidate()
- def constructAutocomplete[Orig, A1, F[_]](param: Param[Orig, A1, F], dataOption: Option[ApplicationCommandInteractionDataOption[_]]): Seq[ApplicationCommandOptionChoice]
- Attributes
- protected
- def constructParam[Orig, A1, F[_]](param: Param[Orig, A1, F], dataOption: Option[ApplicationCommandInteractionDataOption[_]], resolved: ApplicationCommandInteractionDataResolved): Either[String, F[A1]]
- Attributes
- protected
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def foldRight[B](start: B)(f: (Param[_, _, Any], B) => B): B
Fold this parameter list.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[B](f: (Param[_, _, Any]) => B): List[B]
Map all the parameters in this parameter list.
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- def ~[B, G[_]](param: Param[_, B, G]): ParamList[~[A, G[B]]]
Adds the given parameter to the end of this parameter list.
Adds the given parameter to the end of this parameter list.
- param
The parameter to add.