Not Implemented Method in Scala

Signaling unimplemented code sections using Scala's ??? keyword.
def myFun(x: Int, y: Int): Int = 
    val myInt1: Int = x
    val myInt2: Int = y
    ???

myFun(1, 2)

// scala.NotImplementedError: an implementation is missing
Scala
A couple of months ago, I had an idea; to create a place where people could learn Data Science…
Formally, a type class is a type-system construct that supports ad hoc polymorphism. This is achieved by adding constraints to type variables…
Sentiment analysis is a Natural Language Processing (NLP) technique which consists of identifying the emotional tone behind a body…
Over the last two articles of this series, we have discussed different Big Data file formats and their overall…

Request Full Resume