Skip to content

Latest commit

 

History

3 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

subroutine-flowchart

A simple flowchart to help discern between methods, (pure and impure) functions and procedures.

flowchart TB
    A((subroutine))-->B{{Is it part of a class?}}
    B-- Yes -->C((method))
    B-- No -->D{{Does it return something?}}
    D-- Yes -->E{{Is it pure?}}
    D-- No -->F((procedure))
    E-- Yes -->G((pure function))
    E-- No -->H((impure function))
Loading

About

A simple flowchart to help discern between methods, (pure and impure) functions and procedures

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors