Tagged Questions
The side-effects tag has no wiki summary.
14
votes
5answers
555 views
What is the origin of “launch the missiles”?
In the context of functional programming, a typical example of a side effect is "launch the missiles". Where does that expression come from historically?
14
votes
11answers
1k views
Are side effects a good thing?
I feel the term rather pejorative. Hence, I am flabbergasted by the two sentences in Wikipedia:
Imperative programming is known for
employing side effects to make
programs function. Functional
...
13
votes
1answer
335 views
Pure functional programming in D
To my mind the power of functional purity is when deep code paths can be verified as side-effect free. What are people's experiences in the scale of the code tree that can be inside a pure specifier, ...
12
votes
3answers
436 views
Purity vs Referential transparency
The terms do appear to be defined differently, but I've always thought of one implying the other; I can't think of any case when an expression is referentially transparent but nor pure, or ...
12
votes
5answers
707 views
What are the alternative of monads to use IO in pure functional programming?
monads are described as the haskell solution to deal with IO. I was wondering if there were other ways to deal with IO in pure functional language.
11
votes
5answers
145 views
Does placement-new introduce a sequence point?
Consider the following line of code:
new (p++) T();
If the constructor T() throws an exception, is p guaranteed to have already been incremented?
11
votes
2answers
203 views
Getter with side effect
I create a class whose objects are initialized with
a bunch of XML code. The class has the ability to extract various parameters out of that XML and to cache them inside the object state variables. ...
9
votes
9answers
1k views
Are side-effects possible in pure functional programming
I have been trying to wrap my head around functional programming for a while now? I have looked up lambda calculus, LISP, OCML, F# and even combinatorial logic but the main problem I have is how do ...
7
votes
2answers
81 views
OCaml: Does storing some values to be used later introduce “side effects”?
For a homework assignment, we've been instructed to complete a task without introducing any "side-effects". I've looked up "side-effects" on Wikipedia, and though I get that in theory it means ...
7
votes
3answers
127 views
How would I have to imagine pixel-based rendering in Haskell?
Imagine an imperative rendering engine that blits sprites to a bitmap that later gets displayed. This heavily relies on the ability to efficiently mutate individual pixels in said bitmap. How would I ...
7
votes
2answers
225 views
Python closure with side-effects
I'm wondering if it's possible for a closure in Python to manipulate variables in its namespace. You might call this side-effects because the state is being changed outside the closure itself. I'd ...
7
votes
7answers
558 views
Functions that look pure to callers but internally use mutation
I just got my copy of Expert F# 2.0 and came across this statement, which somewhat surprised me:
For example, when necessary, you can
use side effects on private data
structures allocated at ...
6
votes
6answers
273 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 ...
6
votes
1answer
220 views
side effect gotchas in python/numpy? horror stories and narrow escapes wanted
I am considering moving from Matlab to Python/numpy for data analysis and numerical simulations. I have used Matlab (and SML-NJ) for years, and am very comfortable in the functional environment ...
5
votes
3answers
351 views
Can C++ compiler assume a const bool & value will not change?
Can the C++ compiler assume a 'const bool &' value will not change?
For example, imagine that I have a class:
class test {
public:
test(const bool &state)
: _test(state) {
}
void ...
5
votes
2answers
602 views
When exactly does a method have side effects?
As I always understood it, any change to the programs state (or anything to do with IO) is a side effect. It does not matter, whether the change occurs in a global variable or in a private field of ...
5
votes
4answers
279 views
How should I manage side effects in a new language design?
So I'm currently working on a new programming language. Inspired by ideas from concurrent programming and Haskell, one of the primary goals of the language is management of side effects. More or less, ...
4
votes
4answers
164 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, " >>=
...
4
votes
2answers
201 views
How can you rotate banner ads using CouchApp & CouchDB?
For context: this is an HTML app, with little or no browser side JavaScript. I can't easily change that so need to do this on the server.
CouchDB is built to not have side effects. This is fair ...
4
votes
9answers
600 views
How do I mark code with side effects?
I'm working on a project on an 8051 where every byte counts. As such, I am using some global variables where I normally wouldn't. The normal method of passing pointers into a function adds too much ...
3
votes
4answers
142 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 ...
3
votes
6answers
198 views
C# Paradigms: Side effects on Lists
I am trying to evolve my understanding of side effects and how they should be controlled and applied.
Consider for example the following List of flights on which I want to set a property givin a ...
3
votes
2answers
150 views
Referential transparency in OCaml
I'm trying to reconcile the definition of referential transparency with how OCaml handles polymorphic types and side-effects. I read on ...
3
votes
1answer
283 views
Surgical XML editing with Powershell
I'm working with csproj files using Powershell to perform large-scale editing of project references. So far I've managed to edit the Include attributes on ProjectReferences using the following lines:
...
3
votes
10answers
206 views
Is there a way to unit test against side effects?
Any code can provide side effects. Most of the time, side effects can be a sign of bad design and/or need of refactorisation, but when unit testing I find it hard to test against. Consider the ...
3
votes
2answers
129 views
Fine-grained decorator pattern
I understand the Decorator pattern, in it's simplest terms. The idea being that one class wraps another, where a decorator method wishes to run some other code before and/or after calling the same ...
2
votes
3answers
87 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. ...
2
votes
0answers
66 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 ...
2
votes
2answers
68 views
Side effects when passing objects to function in C++
I have read in C++ : The Complete Reference book the following
Even though objects are passed to functions by means of the normal
call-by-value parameter passing mechanism, which, in theory, ...
2
votes
6answers
194 views
Enclosing external jQuery script
I have an external JavaScript file that will be used on pages with lots of other scripts. My script involves a lot of jQuery that listens for events, and by design, I have many global vars declared. ...
2
votes
1answer
76 views
Side effects of defining a structure inside a class
A newbie vb.net question
What is the side effects of defining a structure inside a class (name it X), and create a property inside that class of the type X?
2
votes
3answers
195 views
Rx: Are observables “repeatable” like IEnumerable, and if not, how does this code work?
Yesterday I watched the screencast Writing your first Rx Application (on Channel 9) where Wes Dyer shows how to implement Drag 'n' Drop using Reactive Extensions (Rx). Something that I still don't ...
2
votes
2answers
203 views
Unit testing functions with side effects?
Let's say you're writing a function to check if a page was reached by the appropriate URL. The page has a "canonical" stub - for example, while a page could be reached at ...
2
votes
4answers
183 views
What, if any, is wrong with this approach to declarative I/O
I'm not sure exactly how much this falls under 'programming' opposed to 'program language design'. But the issue is this:
Say, for sake of simplicity we have two 'special' ...
2
votes
4answers
205 views
Why the output for “a” is -80?
#include<stdio.h>
#include<conio.h>
#define ABC 20
#define XYZ 10
#define XXX ABC - XYZ
void main()
{
int a;
a = XXX * 10;
printf("\n %d \n", a);
getch();
}
I ...
2
votes
2answers
1k views
What are the side effects of using EmptyWorkingSet?
I'm using the code below to free up memory on some running programs because my own program needs large memory resources to run faster.
[DllImport("psapi.dll")]
public static extern bool ...
2
votes
2answers
590 views
Java: Why does this method have side effects?
I have a method that is producing side effects, even though certain variables are marked final. Why is this? Perhaps I am confused about what final does.
@Test
public void testSubGraph() {
...
2
votes
3answers
279 views
Nested functions: Improper use of side-effects?
I'm learning functional programming, and have tried to solve a couple problems in a functional style. One thing I experienced, while dividing up my problem into functions, was it seemed I had two ...
1
vote
2answers
28 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 ...
1
vote
2answers
54 views
Simulating side effects of a mocked method
I have a method in a class that causes side effects to the method's parameter:
public void SideEffectsClass {
public void doSomethingWithSideEffects(List<Object> list) {
// do ...
1
vote
2answers
87 views
How to handle bidirectional relationships when constructing hibernate entities?
I want to model the relationship between two entities, a group and an account with JPA/Hibernate. An account can have several groups, but not vice versa, so we have a OneToMany relationship between ...
1
vote
3answers
104 views
Why changing global does not give error?
Why on earth Python lets change not global declared list in function?
RE-UPDATED
numbers = []
num = 4
def add(n, thisnum=None):
# changing global list without global declaration!
...
1
vote
4answers
297 views
Would it be very unpythonic to use this setitem function to overcome the list comprehension limitation?
>>> a=range(5)
>>> [a[i] for i in range(0,len(a),2)] ## list comprehension for side effects
[0, 2, 4]
>>> a
[0, 1, 2, 3, 4]
>>> [a[i]=3 for i in range(0,len(a),2)] ...
1
vote
3answers
246 views
Methods for side-effects in purely functional programming languages
At the moment I'm aware of the following methods to integrate side-effects into purely functional programming languages:
effect systems
continuations
unique types
monads
Monads are often cited to ...
1
vote
3answers
258 views
How can I programmatically detect side effects (compile time or run time)?
I've got an idea for caching that I'm beginning to implement:
Memoizing functions and storing the return along with a hash of the function signature in Velocity. Using PostSharp, I want to check the ...
1
vote
4answers
213 views
What are the best resources for learning how to avoid side effects and state in OOP?
I've been playing with functional programming lately and there are pretty good treatments on the topic of side effects, why they should be contained, etc. In projects where OOP is used, I'm looking ...
1
vote
5answers
131 views
Are there any situations where a side effect on a “get” or “calculate” operation is legitimate?
I've just finished a six hour debugging session for a weird UI effect where I found that my favorite framework's implementation of an interface function called "getVisibleRegion" disabled some UI ...
0
votes
4answers
126 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 ...
0
votes
4answers
113 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 ...
0
votes
2answers
70 views
How to avoid side effect?
To avoid side effect:
I don't want to change the pramaeter object attribute values, in my method. I prefer to create a new one that will represent the result and return it.
Avoiding side effect is ...