package fp101.tp02.collections
object ExerciceSizeInfo {
/**
*
* Should return is a List is Empty
* isEmpty should not use List.isEmpty method
*
*/
def isEmpty[T](l: List[T]): Boolean = ???
/**
*
* Return a Boolean value:
* - true if the number of element of the list is equal or superior to the threshold
* - false otherwise
*
*/
def isBig[T](l: List[T], threshold: Int): Boolean = ???
}