I know in scala (and possibly other programming languages), there is the option 
to rename imports.
    
    
    import some.package.{fooBar => foo_bar}
    

According to the documentation here: 
[http://nim-lang.org/docs/manual.html#modules-import-statement](http://forum.nim-lang.org///nim-lang.org/docs/manual.html#modules-import-statement)
 and assuming it is complete. import as can only rename the module name, not 
identifiers in that package

So in a scenario, where import as could rename the identifiers in a module, and 
no style insensitive identifier equality exists, one could do this to ensure 
all imports have the same style.
    
    
    import somepackage {. rename_snake_case .}
    

Reply via email to