I've to admit that I don't know much about functional programming. I read about it from here and there, and so came to know that in functional programming, a function returns the same output, for same input, no matter how many times the function is called. It's exactly like mathematical function which evaluates to same output for same value of input parameter which involves in the function expression.

For example, consider this:

f(x,y) = x*x + y; //it is a mathematical function

No matter how many times you use f(10,4), it's value will always be 104. As such, wherever you've written f(10,4), you can replace it with 104, without altering the value of the whole expression. This property is referred to as referential transparency of an expression.

As Wikipedia says (link),

Conversely, in functional code, the output value of a function depends only on the arguments that are input to the function, so calling a function f twice with the same value for an argument x will produce the same result f(x) both times.

So my question is: can a time function (which returns the current time) exist in functional programming?

  • If yes, then how can it exist? Does it not violate the principle of functional programming? It particularly violates referential transparency which is one of the property of functional programming (if I correctly understand it).

  • Or if no, then how can one know the current time in functional programming?

link|improve this question

1  
I think most (or all) functional languages are not so strict and combine functional and imperative programming. At least, this is my impression from F#. – Alex Farber Sep 1 '11 at 8:33
6  
@Adam: How would the caller know the current time in the first place? – Nawaz Sep 1 '11 at 8:35
12  
@Adam: Actually it is illegal (as in: impossible) in purely functional languages. – sepp2k Sep 1 '11 at 8:49
22  
@Adam: Pretty much. A general purpose language which is pure usually offers some facility to get at the "world state" (i.e. things like the current time, files in a directory etc.) without breaking referential transparency. In Haskell that's the IO monad and in Clean it's the world type. So in those languages a function which needs the current time would either take it as an argument or it would need to return an IO action instead of its actual result (Haskell) or take the world state as its argument (Clean). – sepp2k Sep 1 '11 at 9:00
3  
@Mikhail and in Haskell, we call everything - including functions - variables, though changing them is impossible. – FUZxxl Sep 1 '11 at 16:21
show 16 more comments
feedback

8 Answers

up vote 114 down vote accepted

Yes and no.

Different FP languages solve them differently.

In Haskell (a very pure one) all this stuff has to happen in something called the IO-Monad - see here. You can think of it as getting another input (and output) into your function (the world-state) or easier as a place where "impureness" like getting the changing time happens.

Other languages like F# just have some impureness built in and so you can have a function that returns different values for the same input - just like normal imperative languages.

As Jeffrey Burka mentioned in his comment: Here is the nice intro to the IO-Monad straight from the HaskellWiki.

link|improve this answer
5  
I would recommend this tutorial as an excellent introduction. – Jeffrey Burka Sep 1 '11 at 16:07
40  
The crucial thing to realise about the IO monad in Haskell is that it is not just a hack to get around this problem; monads are a general solution to the problem of defining a sequence of actions in some context. One possible context is the real world, for which we have the IO monad. Another context is within an atomic transaction, for which we have the STM monad. Yet another context is in the implementation of a procedural algorithm (e.g. Knuth shuffle) as a pure function, for which we have the ST monad. And you can define your own monads too. Monads are a kind of overloadable semicolon. – Paul Johnson Sep 1 '11 at 16:31
2  
@djacobson - thanks. I guess I need a spelling/grammar checker :) – Carsten König Sep 1 '11 at 20:04
feedback

In haskell one uses a construct called Monad to handle side effects. A monad basically means that you encapsulate values into a container and have some functions to chain functions from values to values inside a container. If our container has the type:

data IO a = IO (RealWorld -> (a,RealWorld))

we can safely implement IO actions. This type means: An action of type IO is a function, that takes a token of type RealWorld and returns a new token, together with a result.

The idea behind this is that each IO action mutates the outside state, represented by the magical token RealWorld. Using monads, one can chain multiple functions that mutate the real world together. The most important function of a monad is >>=, pronounced bind:

(>>=) :: IO a -> (a -> IO b) -> IO b

>>= takes one action and a function that takes the result of this action and creates a new action out of this. The return type is the new action. For instance, let's pretend there is a function now :: IO String, which returns a String representing the current time. We can chain it with the function putStrLn to print it out:

now >>= putStrLn

Or written in do-Notation, which is more familiar to an imperative programmer:

do currTime <- now
   putStrLn currTime

All this is pure, as we map the mutation and information about the world outside to the RealWorld token. So each time, you run this action, you get of course a different outut, but the input is not the same - the RealWorld-token.

link|improve this answer
1  
The first example has mismatching parentheses. Is this a mistake, or is Haskell evil? – Kobi Sep 1 '11 at 12:21
10  
@Kobi: Only the RealWorld type is evil. It's filled with dark, secret magics. (yes, it's a typo) – C. A. McCann Sep 1 '11 at 13:22
Dear downvoter: Please explain WHY? – FUZxxl Sep 5 '11 at 19:16
-1: I'm unhappy with the RealWorld smoke screen. Yet, the most important thing is how this purported object is passed on in a chain. The missing piece is where it starts, where the source or connection to the real world is -- it starts with the main function which runs in the IO monad. – kaizer.se Sep 6 '11 at 14:12
@kaizer.se You can think of a global RealWorld object that is passed into the program when it starts. – FUZxxl Sep 6 '11 at 14:21
feedback

Most functional programming languages are not pure, i.e. they allow functions to not only depend on their values. In those languages it is perfectly possible to have a function returning the current time. From the languages you tagged this question with this applies to scala and f# (as well as most other variants of ML).

In languages like Haskell and Clean, which are pure, the situation is different. In Haskell the current time would not be available through a function, but a so-called IO action, which is Haskell's way of encapsulating side effects.

In Clean it would be a function, but the function would take a world value as its argument and return a fresh world value (in addition to the current time) as its result. The type system would make sure that each world value can be used only once (and each function which consumes a world value would produces a new one). This way the time function would have to be called with a different argument each time and thus would be allowed to return a different time each time.

link|improve this answer
1  
This makes it sound as if Haskell and Clean do different things. From what I understand, they do the same, just that Haskell offers a nicer syntax (?) to accomplish this. – Konrad Rudolph Sep 1 '11 at 13:56
14  
@Konrad: They do the same thing in the sense that both use type system features to abstract side effects, but that's about it. Note that it's very well to explain the IO monad in terms of a world type, but the Haskell standard doesn't actually define a world type and it's not actually possible to get a value of type World in Haskell (while it's very possible and indeed necessary in clean). Further Haskell does not have uniqueness typing as a type system feature, so if it did give you access to a World, it could not ensure that you use it in a pure way the way Clean does. – sepp2k Sep 1 '11 at 14:22
feedback

Another way to explain it is this: no function can get the current time (since it keeps changing), but an action can get the current time. Let's say that getClockTime is a constant (or a nullary function, if you like) which represents the action of getting the current time. This action is the same every time no matter when it is used so it is a real constant.

Likewise, let's say print is a function which takes some time representation and prints it to the console. Since function calls cannot have side effects in pure functional language, we instead imagine that it is a function which takes a timestamp and returns the action of printing it to the console. Again, this is a real function, because if you give it the same timestamp, it will return the same action of printing it every time.

Now, how can you print the current time to the console? Well, you have to combine the two actions. So how can we do that? We cannot just pass getClockTime to print, since print expects a timestamp, not an action. But we can imagine that there is an operator, >>=, which combines two actions, one which gets a timestamp, and one which takes one as argument and prints it. Applying this to the actions previously mentioned, the result is... tadaaa... a new action which gets the current time and prints it. And this is incidently exactly how it is done in Haskell.

Prelude> Time.getClockTime >>= print
Fri Sep  2 01:13:23 東京 (標準時) 2011

So, conceptually, you can view it in this way: A pure functional program does not perform any IO, it defines an action, which the runtime system then executes. The action is the same every time, but the result of executing it depends on the circumstances of when it is executed.

I don't know if this was any clearer than the other explanations, but it sometimes helps me to think of it this way.

link|improve this answer
2  
It's not convincing to me. You conveniently called getClockTime an action instead of a function. Well, if you call so, then call every function action, then even imperative programming would become functional programmming. Or maybe, you would like to call it actional programmming. – Nawaz Sep 1 '11 at 16:54
17  
@Nawaz: The key thing to note here is that you cannot execute an action from within a function. You can only combine actions and functions together to make new actions. The only way of executing an action is to compose it into your main action. This allows pure functional code to be separated from imperative code, and this separation is enforced by the type system. Treating actions as first class objects also allow you to pass them around and build your own "control structures". – hammar Sep 1 '11 at 18:25
1  
I personally dislike (hate) the term 'action' that people so often use when talking about monads. It makes it sound like some functions (yes, functions) are not functions, but are actions instead. An action is just a labelling that people (not the language) impose on functions. It's like calling my int boolVal a boolean. Not it's not. It's an int. You are just using it as a boolean. All in all, everything in Haskell (well maybe not everything... cough unsafePerformIO and friends) is a function in the real mathematical sense of the term. – trinithis Sep 1 '11 at 23:08
1  
@trinithis Well, maybe I should have made it clearer that actions are also functions (just like all values in e.g. Haskell are functions, at least if you call constants nullary functions), but not all functions are actions. But I don't think the term action is misleading or imprecise. An action is a type of value which you can distinguish by its type, just like you can distinguish Ints by their type. I didn't drill too much into the type argument, partly because it's covered in other replies, partly because I wanted to focus on my point. – dainichi Sep 2 '11 at 0:17
8  
Not everything in Haskell is a function - that's utter nonsense. A function is something whose type contains a -> - that's how the standard defines the term and that's really the only sensible definition in the context of Haskell. So something whose type is IO Whatever is not a function. – sepp2k Sep 2 '11 at 10:08
show 6 more comments
feedback

"Current time" is not a function. It is a parameter. If your code depends on current time, it means your code is parameterized by time.

link|improve this answer
feedback

Yes! You are correct! Now() or CurrentTime() or any method signature of such flavour is not exhibiting referential transparency in one way. But by instruction to the compiler it is parameterized by a system clock input.

By output, Now() might look like not following referential transparency. But actual behaviour of the system clock and the function on top of it is adheres to referential transparency.

link|improve this answer
feedback

Yes, getting time function can exist in FP using a slightly modified version on FP known as impure FP (the default or the main one is pure FP).

In case of getting the time (or reading file, or launching missile) the code needs to interact with the outer world to get the job done and this outer world is not based on pure foundations of FP. To allow a pure FP world to interact with this impure outside world people have introduced impure FP. After all a software which doesn't interact with the outside world isn't any useful other than doing some mathematical computations.

Few FP programming languages have this impurity feature inbuilt in them such that it is not easy to separate out which code is impure and which is pure (like F# etc) and some FP languages make sure that when you do some impure stuff that code is clearly stand out as compared to pure code, like Haskell.

Another interesting way to see this would be that your get time function in FP would take a "world" object which has the current state of the world like time, number of people living in the world etc. Then getting time from which world object would be always pure i.e you pass in the same world state you will always get the same time.

link|improve this answer
"After all a software which doesn't interact with the outside world isn't any useful other than doing some mathematical computations." As far as I understand, even in this case the input to the computations would be hard-coded in the program, also not very useful. As soon as you want to read input data to your mathematical computation from file or terminal, you need impure code. – Giorgio Sep 1 '11 at 11:49
What about input data as command line arguments :) – Ankur Sep 1 '11 at 12:04
@Ankur: That is the same exact thing. If the program is interacting with something else than just itself(e.g. the world through they keyboard, so to speak) it's still impure. – identity Sep 1 '11 at 12:11
2  
Having the "world object" including the number of people living in the world raises the executing computer to a near omniscient level. I think the normal case is that it includes things like how many files are on your HD and what's the home directory of the current user. – ziggystar Sep 1 '11 at 12:42
2  
@ziggystar - the "world object" doesn't actually include anything - it is simply a proxy for the changing state of the world outside of the program. Its only purpose is to explicitly mark mutable state in a way that the type system can identify it. – Kris Nuttycombe Sep 1 '11 at 15:29
show 4 more comments
feedback

From a physics point of view, the system doing the evaluating has to be some sort of system with a privileged reference frame, so that it 'knows' the time co-ordinate inherently. Conversely, a functional programming paradigm would typically imagine the 'machine' to be of the most abstract sort possible, that is, a system of equations representing some ontology. If the 'current' time is not baked-into the system i.e. a prior assumption in the system of equations you're solving, it can't play a part in the answer - because the system of equations you're solving explicitly do not involve time.

To solve a time-based problem functionally, the current time would have to be - from the point of view of the program - a prior assumption, similar to orthogonality, associativity and so on. One of the rules of the system must be 'time=number'. You must ensure via manipulating the platform that the program runs on, that any variable representing time evaluates to the 'correct' value at the point that the function is called.

link|improve this answer
1  
If you downvote, please have the common decency to explain why. – Tom W Sep 2 '11 at 17:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.