parallelize 1.0.1 copy "parallelize: ^1.0.1" to clipboard
parallelize: ^1.0.1 copied to clipboard

(Parallelism Package Update) An optimized Dart package that simplifies parallelization using isolates.

Parallelism: Concurrency made simple #

dart doc --output docs

⚠️ All relevant documentation is built into the source code, generate docs with dartdoc for comprehensive documentation. Or, view the documentation online on this repo's Github Pages.

Code Conventions #

  • Library level design & developers documentation—an explanation of why things ended up the way they are. Code conventions and comparative outlines of feature sets and other technical details are added here too. Design considerations first and developer considerations next.

  • Documentation for all public interfaces. Use this format:

    One line description of what the method/class/thing does
    
    ### Args <!-- Add this sections if any of the argument names are open to interpretation -->
    - `argName`: Description of what this argument is.
    
    ### Exceptions <!-- Add this section if there are uncaught Exceptions/Errors -->
    - `ExceptionName`: Cause(s) for this exception.
    
    ### Note <!-- Add this section where you want to highlight something specific -->
    - Bullet point everything except the one line description.
    
    - You can highlight anything from the a quirk of the internal logic of this function to a random
    fact related to this function
    
  • Use descriptive variable names.

  • Don't ignore return values even if you are not using them, use dummy variables (_, __, basically any number of underscores) to handle them

  • Keep file sizes small. Break up large 'design chunks' (eg. color) into smaller mini-libraries (eg. color utils, color palette generation, color theme generation). Mark the mini-libraries /// {@nodoc} (case sensitive).

  • Mini-libraries are to be collected into a single library (eg. color.dart) using the export/show directives.

External Resources #

0
likes
155
points
11
downloads

Publisher

unverified uploader

Weekly Downloads

(Parallelism Package Update) An optimized Dart package that simplifies parallelization using isolates.

Repository (GitHub)

Documentation

API reference

License

UPL-1.0 (license)

More

Packages that depend on parallelize