Popularity
4.1
Declining
Activity
0.0
Stable
6
3
1
Monthly Downloads: 1
Programming language: Haskell
License: MIT License
Tags:
Text
fastedit alternatives and similar packages
Based on the "Text" category.
Alternatively, view fastedit alternatives based on common mentions on social networks and blogs.
-
skylighting
A Haskell syntax highlighting library with tokenizers derived from KDE syntax highlighting descriptions -
double-conversion
A fast Haskell library for converting between double precision floating point numbers and text strings. It is implemented as a binding to the V8-derived C++ double-conversion library.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of fastedit or a related project?
README
fastedit
spelling autocorrect algorithm based on the ideas in http://blog.faroo.com/2012/06/07/improved-edit-distance-based-spelling-correction/
USAGE
*Text.FastEdit> neighbours <- buildDict 3 . lines <$> readFile "/usr/share/dict/words"
*Text.FastEdit> take 10 $ neighbours "gold"
["gold","golds","old","god","golden","gold's","golfed","fold","cold","sold"]
TODO
- bench against edit-distance over whole dictionary
- come up with less desperately anodyne name
- work out if we can recover standard levenshtein semantics (we don't currently allow substitution or transposition)
- stop talking in the royal plural