Skip to content

A nim module that imports commonly used standard library modules for your convenience

License

Notifications You must be signed in to change notification settings

AngelEzquerra/nim-batteries

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nim-batteries

This is a nim module that imports commonly used standard library modules for your convenience:

  import batteries

is the same as:

  import std/[os, strutils, times, parseutils, hashes, tables, sets,
    sequtils, parseopt, strformat, sugar, options, strscans, algorithm,
    math]

This module is similar to the standard library prelude module. The differences with prelude are that this module should be imported (while prelude had to be included), and that it imports a few more modules than prelude. The list of imported modules might change in the future as nim evolves.

Importing this module never triggers a UnusedImport warning, even if you don't use any if the modules it imports.

About

A nim module that imports commonly used standard library modules for your convenience

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages