Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lcaballero/go-searcher
A lib that caches text files from disk, and then provides regex search over the cache.
https://github.com/lcaballero/go-searcher
Last synced: 23 days ago
JSON representation
A lib that caches text files from disk, and then provides regex search over the cache.
- Host: GitHub
- URL: https://github.com/lcaballero/go-searcher
- Owner: lcaballero
- Created: 2015-06-14T04:29:30.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-06-14T04:35:44.000Z (over 9 years ago)
- Last Synced: 2024-04-14T19:27:33.083Z (9 months ago)
- Language: Go
- Size: 97.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## List Interface
### Java API
add( T )
add( T, index )
addAll( T[] )
addAll( index, T[] )
clear()
contains( T )
containsAll( T[] )
equals( List )
get( index )
hashCode()
indexOf( T )
isEmpty() : bool
iterator()
lastIndexOf( T )
listIterator()
remove( T )
removeAll( T[] )
retainAll( T[] )
set( index, T )
size()
sublist( start, end )
toArray()