Tagged Questions
The imperative tag has no wiki summary.
17
votes
35answers
2k views
Nested for loops in different languages
Here is a fairly common problem. We have an array of arrays. We'd like to call some function for every combination of elements from the different arrays. Conceptually we'd like to do something like ...
11
votes
5answers
332 views
If I come from an imperative programming background, how do I wrap my head around the idea of no dynamic variables to keep track of things in Haskell?
So I'm trying to teach myself Haskell. I am currently on the 11th chapter of Learn You a Haskell for Great Good and am doing the 99 Haskell Problems as well as the Project Euler Problems.
Things ...
8
votes
5answers
1k views
closures and objects
Functional programming .. is like classic ( Mark Twain's type).
While reading another articles about SICP, where people are talking about
the great impact closures had on there thinking, i got ...
6
votes
6answers
566 views
How do I code a tree of objects in Haskell with pointers to parent and children?
I've got the following problem: I have a tree of objects of different classes where an action in the child class invalidates the parent. In imperative languages, it is trivial to do. For example, in ...
6
votes
5answers
966 views
What functional language techniques can be used in imperative languages?
Which techniques or paradigms normally associated with functional languages can productively be used in imperative languages as well?
e.g.:
Recursion can be problematic in languages without ...
4
votes
2answers
68 views
I want to call it side-effect programming, but there's gotta be a better term for this
What is the name of the following programming paradigm:
Code is executed based on a set of logical tests resolving to true (the clause). The clause is comprised of operators and operands. Each ...
3
votes
1answer
483 views
Scala Performance: imperative vs functional style
I'm new to Scala and was just reading Scala By Example. In chapter 2, the author has 2 different versions of Quicksort.
One is imperative style:
def sort(xs: Array[Int]) {
def swap(i: Int, j: ...
2
votes
2answers
216 views
Java v Scala from a concurrency viewpoint
I am kicking off my final year project right now. I am going to be investigating the concurrency approaches from java and scala perspectives. Having come out of a java concurrency module, I can see ...
2
votes
4answers
267 views
Are the implementation details of declarative languages inherently imperative
I'm reading 'Functional Programming' by Tomas Petricek & Jon Skeet and I understand the difference between declarative & imperative programming.
What I was wondering is how are the primitive ...
1
vote
0answers
145 views
Declarative or Imperative programming in ASP.NET Data Access?
The question is...
Should we use declarative DataSource controls with entity framework or go with the data access linq to entities imperative class library as we used to do with windows forms?
How ...
1
vote
2answers
292 views
Imperative vs interrogative methods
When implementing a class, is it better practice to return a value for methods (interrogative) or to simply manipulate class attributes directly within the method (imperative).
For example, I have a ...
1
vote
2answers
162 views
Is it possible to design and build a procedural (imperative) based application successfully?
Can you provide examples of applications today that are procedural and maintain a high level of integrity and efficiency? Are there any books, tutorials or links that provide examples of how to ...
0
votes
0answers
44 views
A Functional-Imperative Hybrid [closed]
Pure functional programming languages do not allow mutable data, but some computations are more naturally/intuitively expressed in an imperative way -- or an imperative version of an algorithm may be ...
0
votes
0answers
56 views
What other cool languages do I not know about, and what are they really good for? [closed]
I recently stumbled on Erlang and Haskell; I admit I am currently in the process of sipping the Kool-Aid of functional programming :)
What I find disturbing; however, is that I did not learn about ...
0
votes
0answers
81 views
How to design the structure of multiple steps(and substeps) scripts
I wrote a script to run BVT and it's code structure like this:
def step1:
local_var1 = ...
# some other variable definitions for step1
def substep11:
pass
def substep12:
...