ToQuery

net.ruippeixotog.scalascraper.dsl.ToQuery
See theToQuery companion object
trait ToQuery[A]

A type class indicating that an net.ruippeixotog.scalascraper.model.ElementQuery of some net.ruippeixotog.scalascraper.model.Element type can be created from an object of a given type.

Type parameters

A

the type of the object to be made into an ElementQuery

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Type members

Types

type Out <: Element

The type of the element in the ElementQuery.

The type of the element in the ElementQuery.

Attributes

Value members

Abstract methods

def apply(a: A): ElementQuery[Out]

Creates an ElementQuery for an object of type A.

Creates an ElementQuery for an object of type A.

Value parameters

a

the object for which an ElementQuery is to be created

Attributes

Returns

an ElementQuery for the given object.