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 filesystem is a method and data structure used by operating systems to manage how data is stored, organized and retrieved….
Regular Expressions, also known as RegEx, is a pattern-matching tool used to find patterns in strings. We can think…
Exploratory data analysis (EDA) is a scientific technique developed by the mathematician John Tukey in the 1970s widely used in…
Scala is a strong, statically typed, high-level, general-purpose programming language that supports both object-oriented programming and functional programming. It…

Request Full Resume