This `::` value: https://github.com/eaplatanios/tensorflow_scala/blob/master/modules/api/src/main/scala/org/platanios/tensorflow/api/package.scala#L80 Will shadow the `::` List constructor. The List is a commonly used type from the Scala predef so removing the usability of `::` is unexpected. for example: ``` import org.platanios.tensorflow.api._ val oh :: no = List(1, 2) ``` will fail with ``` cmd0.sc:1: value :: is not a case class, nor does it have an unapply/unapplySeq member ```