Tagged Questions

2
votes
2answers
76 views

Is it possible to write tacit functions in F#

Tacit or point-free style programming allows one to create functions without regard to their arguments. Can this be done in F#?
2
votes
3answers
32 views

SML/NJ - Pattern Matching an Dynamic Typing

Is it possible to write functions with dynamically typed input parameters? I tried pattern matching, but apparently it does not work like this. I wish to do something like this: …
4
votes
3answers
114 views

Is there a scala identity function?

If I have something like a List[Option[A]] and I want to convert this into a List[A], the standard way is to use flatMap: scala> val l = List(Some("Hello"), None, Some("World") …
3
votes
7answers
150 views

How to write an enumeration of all computable functions?

Motivation: I'd like to be able to use toy functional programming in languages without first-order functions, by using natural numbers instead of functions. A universal function i …
3
votes
4answers
99 views

While or Tail Recursion in F#, what to use when?

Ok, only just in F# and this is how I understand it now : Some problems are recursive in nature (building or reading out a treestructure to name just one) and then you use rec …
1
vote
3answers
115 views

Why purely functional languages instead of “impure” functional languages?

What's the advantage, for someone who is not a theoretical computer scientist, of learning a purely functional language like Haskell or Erlang instead of an "impure" language with …
5
votes
9answers
278 views

pitfalls/disadvantages of functional programming

What are some of the downsides of functional programming? EDIT: I am more looking for disadvantages of the paradigm as a whole, not things like "not widely used", or "no good deb …
0
votes
1answer
89 views

Nested Lambdas in Python

Hi, I'm a beginning python programmer, and I'd like someone to clarify the following behavior. I have the following code: env = lambda id: -1 def add(id, val, myenv): retur …
3
votes
2answers
173 views

F# :: traversing lists There and Back Again

This is homework :-) Write a function that counts the number of elements in the list that are larger than or equal to the average (using integer division for simplicity). Using ju …
5
votes
7answers
203 views

Is functional programming a subset of imperative programming?

One of the main characteristics of functional programming is the use of side-effectless functions. However, this can be done in an imperative language also. The same is true for re …
4
votes
7answers
191 views

Haskell too many where clauses, any alternate suggestions

I am totally new in Haskell and when writing small programs i normally end up with too many where clauses to check many things in the function, so it is good practice to write wher …
2
votes
2answers
71 views

Inventing a suitable infix operator symbol for liftM

When working with monadic expressions in Haskell, the use of liftM's (even in infix position) often seems quite unaesthetic and verbose to me. Most other monadic primitives (>& …
0
votes
3answers
118 views

What statically typed, functional and interpreted language would you suggest? [closed]

For now I know C++ - statically typed, multi-paradigm (but there is no functional programming paradigm) and complied language. I heard that for learning purposes it is better to le …
1
vote
3answers
91 views

Hashtable indexed on several fields

Hello SO, I'm currently programming an OCaml module defining a type corresponding to a CPU register. The interface of this module is the following : (* * Defines a type which re …
1
vote
2answers
114 views

Clojure: Unable to resolve symbol. I’m stumped.

When I paste this code into a REPL, it works fine: (use 'clojure.contrib.seq-utils) (defn- random-letter [] (char (+ (rand-int 26) 97))) (defn- random-digit [] (rand-int 10)) (def …

1 2 3 4 5 40 next
15 30 50 per page