Does a function that reads external files qualify as a pure function?

  • Yes, as long as it only reads and does not modify
  • No, any file reading operation is impure
  • Only if it's a text file
  • Only if it's a small file
No, reading external files is considered a side effect, and pure functions should not have side effects. Pure functions should only operate on their input parameters and not rely on external factors such as file systems or databases.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *