Functional programming is a programming paradigm which primarily uses functions as means for building abstractions and expressing computations that comprise a computer program.
1
vote
1answer
15 views
call values that have a common key in Lua
1Is there a way to write a function to multiply two values based on only the fact that they have the same key? Here is some psudocode for what I have in mind:
operation = {a=12, b=7, c=31}
operator1 ...
0
votes
1answer
20 views
Call function for all possible combinations of vectors
I have been using Clojure for the past week since I continued a project of a colleague of mine. We are using Clojure to generate some files. I am trying to refactor some code since he had to do it ...
0
votes
2answers
49 views
How can I handle Account Number in erlang?
I'm making Bank Account Management system using ETS which will also hold current and savings account, I'm unable to figure it out that how can I generate and retain the series of account numbers since ...
0
votes
1answer
38 views
can I have a nested lambda expression stored in a Dictionary?
I'd like to parse a string into a lambda expression in C#,
for example, parse "lt 5" to x => x < 5 so I can use it as the argument of Enumerable.Where:
static void Main(string[] args)
{
...
1
vote
2answers
73 views
Are map() and reduce() appropriate for concurrent processing in Go?
Coming from a python background, and just starting with Go, I found myself looking for the equivalent of the map() and reduce() functions in Go. I didn't find them, so fell back on for loops. For ...
-2
votes
0answers
40 views
Regarding a functional equation [closed]
I'll appreciate you if you can help me solve this problem? the result is a function with respect to u.
1
vote
2answers
61 views
What happens underneath append function?
I got an implementation for append function in OCaml, but it seems confused to me
let rec append = function
| [] -> fun y -> y
| h :: t -> fun y -> h :: (append t y)
What is the purpose ...
3
votes
1answer
49 views
Looking for a fold-like idiom
So my friend presented a problem for me to solve, and I'm currently writing a solution in functional-style Python. The problem itself isn't my question; I'm looking for a possible idiom that I can't ...
-4
votes
1answer
46 views
Which of the following implementations is faster?
What I'm trying to do is fill the values of a specific matrix using unknown variables.
Here's the first implementation:
#define PHI(I,J,K) phi[xlength*ylength*(I)+xlength*(J)+(K)] //Macro that calls ...
0
votes
2answers
28 views
How to refactor this array comparison with underscore.js?
Can this code be refactored in a more functional/underscore style, mainly the part that checks for the presence of addedEvents in actualEvents?
describe 'when removing', ->
it 'should remove ...
0
votes
2answers
46 views
Two tables with different names and using the single record cannot be created, how can I implent this?
I'm trying to create two tables using the same record, with two different names, but it creates only any one of them or sometimes throws an exception.
Following is the code from my record file:
...
5
votes
3answers
94 views
Pattern matching functions in OCaml
Can everyone explain to me this piece of code ?
let safe_division n = function
| 0 -> failwith "divide by 0"
| m -> n / m
When I excute safeDiv 3 0 , what is the m and n in this case ?
In ...
1
vote
1answer
41 views
Python: compose list from nested iterators
I have a list of tuples that I need to expand it by adding two elements, each of them comes from a list. So I have [(1, 2, 3)] and two iterators it1 = (i for i in ['a1', 'a2']) and it2 = (i for i in ...
-1
votes
0answers
75 views
Python in functional programming [duplicate]
I am a newbie to the concept of Functional Programming; and yet to read through it completely.
But the one thing that strikes me is that nowhere does Python get mentioned as one of the languages ...
0
votes
1answer
71 views
How to used Cons operator?
Basically the function will take one parameter as a character, number and check whether it is inside the List or not ?
let rec (member: a -> List a -> Bool) x =
| [] -> False
| Cons y ys ...
1
vote
1answer
83 views
Haskell function composition - wrongly inferred type
In the following Haskell code, the function typeError doesn't typecheck.
wrap x = [x]
listf :: [[a]] -> [[a]]
listf = id
typeCheck :: [a] -> [[a]]
typeCheck x = listf (wrap x)
typeError :: ...
2
votes
3answers
105 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 ...
0
votes
1answer
18 views
How to send a packet from Server to Client (from a function) Ejabbered
I am looking for a function. A global function that might do me the work of sending the stream packet to the client.
in function
A (Server, From, attrs)->
I construct the xml element
PacketToBeSent ...
-5
votes
0answers
100 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, ...
0
votes
1answer
125 views
Haskell Time Issue
it is my second question about haskell and i thought my algorhythm is not bad and it gives faster results in c++ and python and there is some problem at haskell it cant give me 10^25 (maybe it gives ...
1
vote
2answers
49 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
votes
2answers
61 views
SICP example doesn't work on Racket
I am trying an example on Chapter 4 of SICP (part of writing the LISP interpreter)
(define (definition-value exp)
(if (symbol? (cadr exp))
(caddr exp)
(make-lambda
...
0
votes
3answers
99 views
Haskell - what is wrong with this function?
i am trying to compute the harmonic series with the function below. But there's a type error and not quite sure what it mean? another question, why [5..1] would gives an empty list?
sumHR = foldr ...
2
votes
4answers
65 views
Functional way to stack list of 2d matrices into 3d matrix
After a clever lapply, I'm left with a list of 2-dimensional matrices.
For example:
set.seed(1)
test <- replicate( 5, matrix(runif(25),ncol=5), simplify=FALSE )
> test
[[1]]
[,1] ...
0
votes
0answers
47 views
make-lambda function alternative in racket
I am learning scheme by reading SICP.
One function in SICP measured is
(make-lambda ...)
I am using Racket as the scheme interpreter. However Racket doesn't have make-lambda function built in. ...
0
votes
5answers
46 views
Functionally prepending an array element
Is there a functional way to prepend an element to an array. Something like:
[1,2].prepend(3); // should return [3, 1, 2]
Kindly notice that a reference to the result array is returned. The reason ...
1
vote
1answer
34 views
Executable specification ..? how executable specifications can be used for rapid prototyping?
After reading these books
Bertrand Meyer, Introduction to the Theory of Programming Languages &
J.D. Ullman, Elements of ML Programming
I have read some papers also, tried to find on ...
0
votes
2answers
113 views
C++11 Most elegant way to implement Pipe and Filter Pattern
I want to create a Pipe and Filter based data handler that should manipulate incoming data sets like so, but not neccessarily limited to:
source pipe(could be a data set from a db) <-sink-source-> ...
0
votes
1answer
32 views
Functional Menu with PhP .current [closed]
I need help making a top navigation menu for my website. I need the top menu to change the main frame of my website, and change its .css style when it is clicked. I've been reading a lot and it seems ...
3
votes
2answers
48 views
File seeking with SML Basis
Is there a way, using the SML Basis library, to open a file at a specific position? That is, use an operating system call to change the position, rather than scan through the file and throw away the ...
1
vote
0answers
171 views
Can every recursive function be rewritten using tail calls? [duplicate]
Can every recursive function be rewritten using tail calls? If not, what are examples of recursive functions for which this can't be done?
2
votes
2answers
40 views
Rewrite cycle in functional style
I've created simple function: it has array as input and id. Function suppose to take all elements 'before' given idea.
function takeBefore(stars, id) {
var taken = [];
for(var i = ...
3
votes
2answers
142 views
How can I convert this binary recursive function into a tail-recursive form?
There is a clear way to convert binary recursion to tail recursion for sets closed under a function, i.e. integers with addition for the Fibonacci sequence:
(Using Haskell)
fib :: Int -> Int
fib ...
1
vote
1answer
56 views
How to create dynamically sized HTML table?
I have a Perl CGI script. I would like to make a dynamic, appropriately-sized table based on query information from a simple HTML form: http://jsfiddle.net/wBgBZ/4/. I wanted to use HTML::Table but ...
1
vote
1answer
29 views
How to display multiple entries from an HTML form?
I have a Perl CGI script. I'm trying to display the user entries on every line but it's not working. Here's what I have so far:
#!/usr/bin/perl
use strict; use warnings;
use CGI qw( :standard);
...
3
votes
1answer
80 views
Reducing a sequence into a shorter sequence while calling a function on each adjacent element
I've got a function that looks at two of these objects, does some mystery logic, and returns either one of them, or both (as a sequence).
I've got a sequence of these objects [o1 o2 o3 o4 ...], and ...
2
votes
1answer
49 views
Replacing data.table observations; vector approach
I would like to replace select values in a data.table variable with a new set of values.
### Vector of old values I would like to replace
char <- c('one', 'two', 'three', 'four', 'five', 'six', ...
1
vote
3answers
127 views
Haskell IO function type mismatch
what is the problem with the following code:
nextMatch :: (a -> Bool) -> [IO a] -> (IO a, [IO a])
nextMatch f (x:xs) = do
s <- x
if f s then (return x, xs)
else nextMatch ...
5
votes
2answers
100 views
How to properly debug OCaml code?
Can I know how an experienced OCaml developer debugs his code?
What I am doing is just using Printf.printf. It is too troublesome as I have to comment them all out when I need a clean output.
How ...
2
votes
2answers
60 views
scheme pattern checking if it is a number
I am a scheme beginner and
I am wondering how to explain this piece of scheme code? Looks so preculiar!
(define (calc2 exp)
(match exp
[(? number? x) x]))
...
0
votes
2answers
42 views
Python Applying map function to sub list
I have an array holding another object items :
myarray=[]
myarray.append((1,2,3))
myarray.append((4,5,6))
how can I apply a map function to the last 2 columns of the list
somethign like
def ...
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 ...
16
votes
5answers
1k views
What is so special about Monads?
A monad is a mathematical structure which is heavily used in (pure) functional programming, basically Haskell. However, there are many other mathematical structures available, like for example ...
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 => ...
-1
votes
3answers
88 views
List difference function
Does any existing programming language, particularly in the Lisp or ML families, have a library function to calculate list difference in the sense of 'first until start of second' - I'm not sure ...
3
votes
3answers
132 views
What does sharing refer to in the implementation of a functional programming language
Sharing means that temporary data is stored if it is going to be used multiple times. That is, a function evaluates it's arguments only once. An example would be:
let x = sin x in x * x
What other ...
0
votes
3answers
167 views
most idiomatic way to implement recursive list comprehension in F#
the question in short: What is the most idiomatic way to do "recursive List comprehension" in F#?
more detailed: As I have learned so far (I am new to F#) we have essentially the following tools to ...
37
votes
4answers
4k views
What constitutes a fold for types other than list?
Consider a single-linked list. It looks something like
data List x = Node x (List x) | End
It is natural to define a folding function such as
reduce :: (x -> y -> y) -> y -> List x ...
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
62 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 ...
