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
In our previous article, What Is Julia, and Why It Matters?, we discussed why Julia is so relevant today and…
In the last segment of this 5-piece Portfolio Project, we discussed what sentiment analysis is and the types of approaches for…
GitHub Gists is a tool developed by GitHub which provides a simple way to share code snippets with other people….
Destructuring is a very powerful & widely-used syntactic construct that allows us to decompose a given object or structure…

Request Full Resume