2
votes
3answers
109 views

Implementing mutable methods in Scala classes

I am new to Scala. How do I implement methods in classes? I have defined a trait which look like this: trait Node extends Component{ val label:Int val inputEdges:List[Edge] = List[Edge]() val ...
-5
votes
0answers
109 views

The right step to begin: Scala vs OCaml [closed]

This question could seem stupid, 'couse i haven't so much experience in functional programming. I was wondering which is the best language between OCaml and Scala. I already done something in OCaml, ...
1
vote
2answers
51 views

convert timestamps to intervals

I wrote a scala function that converts list of timestamps to intervals def toIntervals(timestamps: List[String]) = { def helper(timestamps: List[String], accu: List[Long]): List[Long] = { ...
1
vote
3answers
59 views

Merging a list of Strings using mkString vs foldRight

I am currently trying out things in Scala, trying to get accustomed to functional programming as well as leaning a new language again (it's been a while since last time). Now given a list of strings ...
2
votes
1answer
65 views

Function argument in Scala, writing fold

just curious about what difference is between the following part of the definition abstract class OperationTree { def foldOT[T] (flr : (OT, OT) => T, fsv : (Number => T), fs : (String => ...
0
votes
1answer
49 views

How to make a Map string as keys and functions as values in scala?

What I would like to do is something like this : val myMap: Map[String, => String] = Map( "name1" -> {//functions that does stuff to generate some string}, "name2" -> {//functions that ...
1
vote
1answer
63 views

Scala - Two Lists to Tuple List

Last year I had quite a bit of experience with standard ML, but I haven't done any real functional programming in about 10 months. Now that I'm on the Scala bandwagon, I'm having trouble finding an ...
1
vote
3answers
120 views

Is there a best practice to assign a value to a scala Option when it's not initialized/None?

I have the following class where the properties are an Option[T] class User extends IdBaseEntity[UUID] { var id: Option[UUID] = None var name: Option[String] = None var createdOn: Option[Date] ...
1
vote
3answers
106 views

Recursive List concatenation

I have the following function that returns a list of distances between the elements of a list of integers: def dists(l: List[Int]) = { //@annotation.tailrec def recurse(from: Int, rest: ...
3
votes
1answer
82 views

Zip two HashMaps(or dictionaries)

What would be a functional way to zip two dictionaries in Scala? map1 = new HashMap("A"->1,"B"->2) map2 = new HashMap("B"->22,"D"->4) // B is the only common key zipper(map1,map2) ...
2
votes
1answer
134 views

Having difficulties with recursive tree traversal in functional programming; how do I avoid a StackOverflow?

I am struggling with the Scala course on Coursera, and I realised that I am having serious problems dealing with recursion, particularly tree traversal in a functional manner. To generalize the ...
3
votes
2answers
104 views

Recursive set union: how does it work really?

I am currently taking the Scala course on Coursera on my free time after work, in an attempt to finally give a try to functional programming. I am currently working on an assignment where we are ...
9
votes
2answers
280 views

Function Overhead in Functional Languages like Haskell or in Hybrids like Scala [closed]

Coming from imperative languages like Python, Javascript and Java, I was very often reading about function overhead and why to avoid map from a performance perspective. Obviously these are no ...
2
votes
3answers
140 views

The functional way to do “max” (with recursion / without mutable vars)

Finding a max in an unsorted array with imperative code is quite straight forward e.g. in Java (I'm sure it can be written better, only used for illustration purposes) public class Main { public ...
2
votes
1answer
62 views

Choosing between side effects and good API design in functional programming with scala

I'm porting to scala a java application I wrote as a learning exercise. Part of it is communicating with another machine using a protocol directly over TCP. This protocol has 2 layers (Application and ...
153
votes
3answers
11k views

What does “coalgebra” mean in the context of programming?

I have heard the term "coalgebras" several times in functional programming and PLT circles, especially when the discussion is about objects, comonads, lenses, and such. Googling this term gives pages ...
2
votes
1answer
103 views

scanr1 in Scala?

In Scala, is there a scanr1, similar to Haskell's scanr1 which takes no zero-element and produces the intermediate results that would otherwise be created by an in-order reduce operation?
21
votes
4answers
517 views

How to concisely express function iteration?

Is there a concise, idiomatic way how to express function iteration? That is, given a number n and a function f :: a -> a, I'd like to express \x -> f(...(f(x))...) where f is applied n-times. ...
2
votes
3answers
137 views

Functional assertion in Scala

Is there built-in support for assertions that return a result? It is very non-functional to do this: def addPositive(a: Int, b: Int) = { assert(a > 0 && b > 0) a + b } I ...
2
votes
1answer
64 views

How to convert inner elements of a List[List[Int]] to tupleNs? (How to flatten polymorphic tupleNs)

I want to convert multiple lists, each with a constant inner list size, that look like this: List(List(1, 2, 3), List(3, 4, 5)) List(List(1, 2), List(3, 4)) to this: List((1, 2, 3), ...
2
votes
3answers
147 views

Scalable and fast REST APIs to expose ORM methods

I need to develop REST APIs to expose CRUD operations to DB and some business logic. I prefer this module to be standalone, fast, scalable and nimble (no unnecessary modules that provide functionality ...
6
votes
1answer
186 views

example uses scalaz.Lens's modf, modp and xmap

There are number of great tutorials and posts out there covering the more straightforward of Lens's methods, e.g. Cleaner way to update nested structures; can anyone provide example uses for these ...
14
votes
3answers
473 views

Functional implementation of Tarjan's Strongly Connected Components algorithm

I went ahead and implemented the textbook version of Tarjan's SCC algorithm in Scala. However, I dislike the code - it is very imperative/procedural with lots of mutating states and book-keeping ...
21
votes
1answer
1k views

Are there any documented anti-patterns for functional programming? [closed]

Next month I'm going to work on a new R&D project that will adopt a functional programming language (I voted for Haskell, but right now F# got more consensus). Now, I've played with such ...
2
votes
2answers
84 views

reversing the boolean return type from a function

I have two functions which accept a function type: Int => Boolean function type def myFunction1(f1: Int => Boolean) ... def myFunction2(f2: Int => Boolean) ... I want to call function2 ...
0
votes
4answers
70 views

Converting this function to anonymous function

How do I create this function which returns true if a number is 5 to an anonymous function: def yeah_five(p: Int): Boolean = p == 5 thanks?
5
votes
3answers
338 views

Universal and Existential Quantifiers of First-Order Logic

I am taking a Scala programming course. At one point the instructor said: Functions blah and bladdy are the universal and existential quantifiers of first-order logic. Could someone translate ...
2
votes
2answers
95 views

How to filter a list with a condition that depends on more than one element

Given a list L I want to keep an element L(i) if it exists at least one value j > i such that L(j) is a multiple of L(i), otherwise L(i) should be discarded. It is quite simple to do that by means ...
6
votes
2answers
140 views

Recurrent call to a function until it returns None

I often encounter a pattern so I was wondering if there is any convenient method in Scala library for it. Let it be a function f: A => Option[B]. I would like to do a recurrent call to f beginning ...
6
votes
1answer
103 views

Is there an elegant way to foldLeft on a growing scala.collections.mutable.Queue?

I have a recursive function that I am trying to make @tailrec by having the inner, recursive part (countR3) add elements to a queue (agenda is a scala.collections.mutable.Queue). My idea is to then ...
1
vote
2answers
109 views

Apply function on unlimited parameters

I would like to write a function that can get unlimited parameters with this syntax myfunc arg1 arg2 arg3 .... I have tried some using curring but nothing helped i have tried to make it recursivly ...
1
vote
2answers
131 views

two dimensional tail recursion in scala

I am new to Scala and started to learn about tail recursion. I learned that tail recursion in functional programming is a counter part of iterations (for loops) in imperative programming: Simple C++ ...
6
votes
1answer
158 views

Why is List a Semigroup but Seq is not?

I'm fairly new to scalaz and I am trying to figure out why the following code works: import scalaz._ import Scalaz._ scala> Map[String,List[String]]() |+| Map[String,List[String]]() res3: ...
6
votes
1answer
132 views

Scala - Domain object modeling

I'm currently trying to wrap my mind around Scala with an intention to use it for my next project that has to deal with DICOM. DICOM has quite broad specification that spans over thousands of pages of ...
4
votes
1answer
166 views

functional style to multiply two lists with Scala

I'm using Scala 2.9, and would like to construct a list based on some operations. Consider the following, I have two simple lists: val l1 = List(2,3) val l2 = List(List(4,5,6),List(7,8,9)) ...
1
vote
1answer
75 views

Function taking an array and a function on an element array

I'm starting to learn Scala and while reading Scala for the Impatient, got to the following solution to one of the exercises: //No function def positivesThenZerosAndNegatives(values: Array[Int]) = { ...
1
vote
2answers
94 views

Is it possible to work with a list of generic values with different type parameters in Scala?

I want to achieve the following: There is a list of strings I need to process. There are several different kinds of these processors, each of which knows which part of the string to read. I need to ...
3
votes
1answer
118 views

don't understand scalaz endo function

In scalaz, the endo function in Function1Ops is implemented this way: def endo(implicit ev: R =:= T): Endo[T] = Endo.endo(t => ev(self(t))) I am curious why in the body of Endo.endo ...
0
votes
2answers
158 views

scala functional quick sort

In the chapter 2 of the book http://www.scala-lang.org/docu/files/ScalaByExample.pdf, M. Odersky wrote following implementation of quick sort def sort(xs: Array[Int]): Array[Int] = { if (xs.length ...
1
vote
1answer
174 views

Idiomatic Scala to iterate over all substrings [closed]

Something less imperative than this: def subs(s: String) = for {start <- 0 to s.length; end <- i to s.length} yield s.substring(start, end)
1
vote
2answers
320 views

Functional Programming + Domain-Driven Design

Functional programming promotes immutable classes and referential transparency. Domain-driven design is composed of Value Object (immutable) and Entities (mutable). Should we create immutable ...
18
votes
4answers
342 views

Is there any fundamental limitations that stops Scala from implementing pattern matching over functions?

In languages like SML, Erlang and in buch of others we may define functions like this: fun reverse [] = [] | reverse x :: xs = reverse xs @ [x]; I know we can write analog in Scala like this ...
0
votes
1answer
89 views

Readin a two-dimensional array using scala

Suppose I have a txt file named "input.txt" and I want to use scala to read it in. The dimension of the file is not available in the beginning. So, how to construct such an Array[Array[Float]]? What ...
-3
votes
1answer
112 views

Is there a better way to rewrite this function?

Is there a better way to rewrite the foo[T] function? implicit def stringConverter(s: String) = new { def convert[T](): Option[T] = { //converts s: String to Option[T] } } def foo[T](m: ...
4
votes
1answer
143 views

Why doesn't Scala's Either.RightProjection#filter return an Either?

Using Scala 2.9.1, consider the following two instances of Either: scala> val er: Either[String, Int] = Right(1) er: Either[String,Int] = Right(1) scala> val el: Either[String, Int] = ...
2
votes
1answer
214 views

Cross product in Scala

I want to have a binary operator x (cross-product/cartesian product) of traversables in Scala: val x = Seq(1, 2) val y = List('hello', 'world', 'bye') val z = x cross y # i can chain as many ...
0
votes
0answers
125 views

Scala: Eliminating getters and setters when using java frameworks that require them… (Java/Scala interoperability)

Hey I'm using getters and setters because I'm relying on java libraries that don't have scala versions yet (tinkerpop but it's not relevant). Is there any way to rewrite my code to eliminate the ...
4
votes
2answers
88 views

Filter condition using filtered value

I would like to filter collection, so distance between adjacent elements would be at least 5. So List(1, 2, 3, 4, 5, 6, 7, 11, 20) will become List(1, 6, 11, 20). Is it possible to achieve in one ...
7
votes
3answers
150 views

Scala idiom for ordering by multiple criteria

I want to do something like this: class Foo extends Ordered[Foo] { val x val y val z . . . . def compare(that: Foo) = { val c0 = this.length compareTo that.length ...
3
votes
1answer
158 views

How to combine body parser and security in Play

I'm using a variant of the security solution implemented in ZenTask in the sample project: The goal is to combine withAuth and Action(parse.json) but I cant figure out how. My security trait def ...

1 2 3 4 5 11