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
Sentiment analysis is a Natural Language Processing (NLP) technique which consists of identifying the emotional tone behind a body…
In today’s world, we’re constantly being bombarded with information from countless sources – news outlets, social media, blogs, etc….
Elixir is a compiled, dynamically-typed, general-purpose, functional programming language developed by Brazilian software developer José Valim, first released in…
Regular Expressions, also known as RegEx, is a pattern-matching tool used to find patterns in strings. We can think…

Request Full Resume