*Side-effect* means any state changes done while evaluating a function.

learn more… | top users | synonyms

0
votes
0answers
20 views

Trying to violate referential transparency in an excel UDF [duplicate]

I'm doing some tests to work out what you can and can't do with excel macros. The situation is that I want to call the following UDF from a cell and have it evaluate to "hotdawg" while also having the ...
1
vote
5answers
119 views

looking for macro which will replace function

I dont know if name of topic exactly introduces my problem, but thing is: in my company code, there is a function, for example: float func_x(float a){ float b return b } that function ...
1
vote
3answers
88 views

Side effects in C

I thought that my understanding of side effects in programming languages was OK. I think this is a great definition from wikipedia: "in addition to returning a value, it also modifies some state ...
1
vote
3answers
72 views

Consume http requests lazy

I'm trying to enrich data and the interface I have available for this is a web form. Due to the very poorly quality of the data on the remote end, I run through a chain of different searches until I ...
2
votes
0answers
112 views

Strange weka side effect

I have a weka classifier successfully working (in scala). I'm trying to implement a second classifier to work alongside it. During training, I'm setting up the instances for the first classifier like ...
0
votes
0answers
26 views

How can a nested Python function side-effect variables in its containing function? [duplicate]

When I create a function definition within another Python v2.7 function, I would like to be able to refer to and modify variables in the parent function, but thus far can only do so with the use of ...
2
votes
1answer
42 views

What is the scope of the idempotence requirement on PUT operations within REST?

Let's imagine I have an object that serializes into JSON like so: { "Name" : "Mike", "Status" : "Too cool for school", "Looks" : "Devilishly good"} Now, imagine I have a ...
2
votes
2answers
74 views

Why `Source.fromFile(…).getLines()` is empty after I've iterated over it?

It was quite a surprise for me that (line <- lines) is so devastating! It completely unwinds lines iterator. So running the following snippet will make size = 0 : val lines = ...
1
vote
2answers
55 views

Does a side-effect inside a loop affect its generator?

In Python v2.7, I have come across a for statement over a for generator where in the body of the loop the item which is the source of the for generator is side effected: for ssid in (ssid for ssid in ...
0
votes
1answer
58 views

how to add a clip toggle effect to a static bit of jquery

I'm pretty new to jquery and I've been trying to add a 'clip' slide-open effect to a static bit of jquery I have. this is the effect that I'm after... ...
0
votes
2answers
18 views

How do I create a stack in a REST API?

I am working on a distributed execution server. I have decided to use a REST API based on HTTP on the server. The clients will connect to the server and GET the next task to be accomplished. ...
10
votes
4answers
582 views

Why can applicative functors have side effects, but functors can't?

I'm feeling rather silly asking this question, but it's been on my mind for a while and I can't find any answers. So the question is: why can applicative functors have side effects, but functors ...
0
votes
5answers
84 views

How to use properly recursion and side effects in python

In a tree structure, I'm trying to find all leafs of a branch. Here is what I wrote: def leafs_of_branch(node,heads=[]): if len(node.children()) == 0: heads.append(str(node)) else: ...
1
vote
3answers
53 views

Side-effect not working

I have created a buffer class to use with networking, and I use a side-effect to get the buffer pointer, as well as the size. I have created a simple test that displays the same behaviour as the ...
3
votes
2answers
67 views

Side effects and esoteric languages

As an offshot of a discussion in the comments on this question. I wanted to ask about the relationship between side effects and esoteric functions. specifficaly: 1) could you access the gpu (and ...
0
votes
2answers
59 views

Creating an object passed as an abstract type object

I have an abstract class implemented by several concrete classes with different memory footprint, in order to use polymorphism. #include <iostream> using namespace std; class abstractFoo { ...
1
vote
4answers
89 views

Non destructive way of deleting a key from a hash

Is there a non-destructive way of deleting a key value pair from a hash? For example, if you did original_hash = {:foo => :bar} new_hash = original_hash new_hash = new_hash.reject{|key, _| key == ...
4
votes
1answer
144 views

PSR-1 2.3 Side Effects Rule

I have a questions Regarding PHP Basic Coding Standards PSR1. PSR 1 Rule 2.3 states ##Rule 2.3 Side Effects## A file SHOULD declare new symbols (classes, functions, constants, etc.) and cause no ...
13
votes
1answer
147 views

How are side effects and observable behavior related in C++?

C++03 Standard 1.9/6 defines observable behavior: The observable behavior of the abstract machine is its sequence of reads and writes to volatile data and calls to library I/O functions. and ...
3
votes
1answer
97 views

Chaining compound assignment operators in JavaScript

In C#, string s = "abc"; s += (s += s); Console.WriteLine(s); writes abcabcabc (http://ideone.com/pFNFX2). This is fine, because the C# specification explicitly says in section 7.16.2 that the ...
10
votes
2answers
318 views

Should macros have side effects?

Can (or should) a macro expansion have side effects? For example, here is a macro which actually goes and grabs the contents of a webpage at compile time: #lang racket (require (for-syntax net/url)) ...
1
vote
2answers
113 views

Why strange list comprehension behavior with side effects?

I know that using side effects in Python list comprehensions is not good practice. But I can't understand why something like the following happens: In [66]: tmp = [1,2,3,4,5]; [tmp.remove(elem) for ...
11
votes
1answer
251 views

Why is “volatileQualifiedExpr + volatileQualifiedExpr” not necessarily UB in C but in C++?

When I today read the C Standard, it says about side effects Accessing a volatile object, modifying an object, modifying a file, or calling a function that does any of those operations are all ...
0
votes
1answer
76 views

Side effects of a iphone app

is there a way to measure side effects of a iphone app on other apps performance? at least using a black-box focus. Any suggestion about a monitorization app with this orientation? I have found that ...
2
votes
2answers
92 views

Is creating threads in YARV Ruby generally regarded as a side-effect from a FP perspective?

If a Ruby method creates threads, but joins them within the method, is that still considered a side-effect from a functional programming perspective? The implementation I'm using is YARV Ruby, in ...
6
votes
2answers
448 views

Side effects in Scala

I am learning Scala right in these days. I have a slight familiarity with Haskell, although I cannot claim to know it well. Parenthetical remark for those who are not familiar with Haskell One trait ...
0
votes
1answer
65 views

Side Effect Tracking in SSA

I am working on an optimizer for Java bytecode and decided to use SSA. However, most optimizations require all operations to be purely functional, so in order to handle side effects, I decided to add ...
18
votes
2answers
3k views

Which algorithms are hard to implement in functional languages?

I'm dabbling in functional languages and I have found some algorithms (especially those that use dynamic programming) harder to write and sometimes less efficient in worst case runtime. Is there a ...
7
votes
3answers
160 views

Why is the raising of an exception a side effect?

According to the wikipedia entry for side effect, raising an exception constitutes a side effect. Consider this simple python function: def foo(arg): if not arg: raise ValueError('arg ...
3
votes
2answers
97 views

Is there a way to determine if a JavaScript function has side effects? [closed]

Given a Javascript function, is it possible to verify that the function has no side effects; i.e., that the function does not change the value of any variables that are declared outside the function's ...
3
votes
3answers
172 views

Side-effects and top-level expressions in OCaml

I am in trouble with ocaml. I want to make a function that will increment my counter every time I call it and concat my vargen string with the counter number and return this new string. What I did ...
1
vote
2answers
95 views

What determines when a collection is created?

If I understand correctly Clojure can return lists (as in other Lisps) but also vectors and sets. What I don't really get is why there's not always a collection that is returned. For example if I ...
2
votes
2answers
206 views

Is spawning new threads via a LINQ Select call bad code?

ReSharper refactored a foreach loop I had to something like this. I wanted to spawn a bunch of threads via a delegate's BeginInvoke with different parameters, stored in a list, and store the ...
2
votes
2answers
198 views

Haskell - Print a Trace After Execution

I have a project for Uni to write a compiler (in Haskell) for a simple made-up imperative language. One of the requirements is printing debug statements on entering a function call, leaving a function ...
0
votes
2answers
96 views

Haskell: Why this would lead to empty list exception?

I am currently working on Project Euler for fun, and use Haskell for practicing. However, I encountered a problem, and I cannot seem to produce a smaller example, so here are the codes (for project ...
10
votes
2answers
246 views

Side effects of changing filter and requirements of an existing app in Android Play/Market

No previous questions about it, so here I ask. Background: I have an old app, in free and paid versions, in the Play Market. I created a new version, radically changed and with a different payment ...
3
votes
5answers
616 views

Generate unique numbers at compile time

I want to generate unique numbers for each class in my header, primes in my case primes but let's say this should only be consecutive numbers i.e. 1,2,3,4,etc. Of course I can hardcode these: struct ...
0
votes
4answers
65 views

c++ macro sideeffect

I don't understand why the result is going to be 36. Can somebody explain to me what is happening here and what the preprocessor does? #include <iostream> #define QUADRAT(x) ((x) * (x)) using ...
0
votes
3answers
234 views

Python Side Effects I Don't Understand

def group_move(group, damper): # Make a copy to test values new = group # See what the original group value is print("Test = " + str(group.ctris[0].p1.x)) dr = some float dx = ...
4
votes
1answer
866 views

Anything in Guava similar to Functional Java's Effect?

I know one of the goals of pure functional programming is to eliminate mutability, and therefore to preclude side-effects. But let's face it, Java is not a functional language even with all of the ...
3
votes
1answer
114 views

I'm missing something simple here (run-time execution precedence?)

Execution of this simple code: int foo(int* a){ cout <<"a="<<a; *a=1; cout <<", *a="<<*a<<endl; return 0;} int main () { int* ptr; ptr=new ...
4
votes
2answers
482 views

Java volatile and side-effects

Oracle's documentation on atomic access (at http://docs.oracle.com/javase/tutorial/essential/concurrency/atomic.html) says this: "a volatile variable establishes a happens-before relationship... . ...
1
vote
2answers
106 views

Managing global objects with side effects when reloading a module in Python

I am looking for a way to correctly manage module level global variables that use some operating system resource (like a file or a thread). The problem is that when the module is reloaded, my ...
3
votes
4answers
322 views

Why does Perl's m//g operator sometimes result in NULLs being introduced into text?

We ran into some strange results recently in one of our Perl scripts, where the NULL character (\0 in Perl) was being introduced into some text. We ultimately tracked it down to the //g operator being ...
0
votes
4answers
171 views

How to declare an object as invalid after a function call in C++11?

Is there anyway in C++11 to have an input argument to a function be declared as invalid after the function returns? For a simple example, consider that I have a rectangle object with a coordinate for ...
2
votes
3answers
163 views

Most common pattern for using a database in a functional language, given desire for no side-effects?

I'm trying to get my head around a core concept of functional langauges: "A central concept in functional languages is that the result of a function is determined by its input, and only by its input. ...
6
votes
6answers
410 views

What happens if you compile a program that takes no input? (Haskell IO purity issues (again))

putStrLn when called with any arguments will always return a value of type IO (). I agree that's pure, I can handle that. But is it referentially transparent? I think so, because for any given input ...
4
votes
4answers
301 views

Lazy evaluation and IO side effect confusion

This code (taken from Learn You A Haskell): main = do putStr "Hey, " putStr "I'm " putStrLn "Andy!" apparently desugars to main = putStr "Hey, " >>= ...
1
vote
4answers
420 views

Javascript closures and side effects in plain English? (separately)

I've been reading some JavaScript books and I always hear about closures and side effects. For some reason I can't understand what they really are. Can anyone explain to me what they are in plain ...
2
votes
0answers
184 views

Type inference for imperative statements other than assignment [closed]

In my search for research papers about type systems for imperative languages, I only find solutions for a language with mutable references but without genuine imperative control structures such as ...

1 2 3