Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clarify return types for a few spots in stdlib #56

Merged
merged 1 commit into from
Dec 26, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/scala/stdlib/HigherOrderFunctions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ object HigherOrderFunctions extends FlatSpec with Matchers with org.scalaexercis
/** Function returning another function:
*/
def returningFunctionHigherOrderFunctions(res0: Boolean, res1: Int, res2: Int) {
def addWithoutSyntaxSugar(x: Int) = {
def addWithoutSyntaxSugar(x: Int): Function1[Int, Int] = {
new Function1[Int, Int]() {
def apply(y: Int): Int = x + y
}
Expand All @@ -97,7 +97,7 @@ object HigherOrderFunctions extends FlatSpec with Matchers with org.scalaexercis

addWithoutSyntaxSugar(2)(3) should be(res1)

def fiveAdder = addWithoutSyntaxSugar(5)
def fiveAdder: Function1[Int, Int] = addWithoutSyntaxSugar(5)
fiveAdder(5) should be(res2)
}

Expand Down