Home | History | Annotate | Download | only in howto

Lines Matching full:effects

60 functions with side effects that modify internal state or make other changes
62 effects at all are called **purely functional**. Avoiding side effects means
68 side effects. Printing to the screen or writing to a disk file are side
69 effects, for example. For example, in Python a call to the :func:`print` or
71 their side effects of sending some text to the screen or pausing execution for a
78 local variables, but won't modify global variables or have other side effects.
90 avoid objects and side effects? There are theoretical and practical advantages