All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.specs2.matcher.NonEmptyListMatchers.scala Maven / Gradle / Ivy

There is a newer version: 4.20.9
Show newest version
package org.specs2.matcher

import cats.data.NonEmptyList
import org.specs2.data.Sized

trait NonEmptyListMatchers {

  implicit def nonEmptyListIsSized[T]: Sized[NonEmptyList[T]] = new Sized[NonEmptyList[T]] {
    override def size(t: NonEmptyList[T]): Int = t.length
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy