-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature filter rows by inequality. (#36)
Allows rudimentary filtering of rows using inequalities, in Caves & Cavers, on columns Views & Count respectively. Added comments to `search` methods that attempt point out the goofy nature of that function, i.e. that it needs to return `false` generally, and that we only return `true` if there is something we want to _not_ display there by only displaying what matches our search criteria. Not sure exactly why I wrote it that way. Updated .gitignore to exclude tags file. NB: Change in functionality — Applying a filter with no column specified now assumes you are looking at `visits` or `count`.
- Loading branch information
1 parent
4df9d39
commit 788e98c
Showing
6 changed files
with
65 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ _old | |
# Mac | ||
*.DS_Store | ||
|
||
tags | ||
|
||
# -- Except ---- | ||
!.keep | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters