Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what does seq stand for in haskell

Tags:

haskell

seq

I am new to haskell, and have just come to the lazy world proramming. I read that the seq function is very special because it forces to use a strict evaluation in order to be more efficient in some cases. But I just can't find what seq stand for literally. Maybe Strict Evaluation Q*???

like image 563
richard.g Avatar asked Apr 24 '26 12:04

richard.g


1 Answers

It is supposed to remind you of "sequentially" or "sequence" because it allows the programmer to specify the sequence of evaluation of its arguments.

like image 175
Chris Taylor Avatar answered Apr 27 '26 01:04

Chris Taylor