class
HashedLcs[T] extends Lcs[T]
Instance Constructors
-
new
HashedLcs(delegate: Lcs[Hashed[T]])(implicit arg0: Eq[T])
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
def
+(other: String): String
-
def
->[B](y: B): (HashedLcs[T], B)
-
final
def
==(arg0: Any): Boolean
-
def
apply[F[_], Json](json: Json)(implicit P: Patch[F, Json, HashedLcs[T]]): F[Json]
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
diff[P](that: HashedLcs[T])(implicit Diff: Diff[HashedLcs[T], P]): P
-
-
-
-
-
-
-
def
finalize(): Unit
-
def
formatted(fmtstr: String): String
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
-
def
lcs(seq1: List[T], seq2: List[T], low1: Int, high1: Int, low2: Int, high2: Int): List[(Int, Int)]
-
def
lcs(seq1: List[T], seq2: List[T]): List[(Int, Int)]
-
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
-
def
savedHashes: HashedLcs[T]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
def
→[B](y: B): (HashedLcs[T], B)
Inherited by implicit conversion any2stringadd from
HashedLcs[T] to any2stringadd[HashedLcs[T]]
Inherited by implicit conversion StringFormat from
HashedLcs[T] to StringFormat[HashedLcs[T]]
Speeds up LCS computations by pre-computing hashes for all objects. Very useful for objects that recompute hashCodes on each invocation.