Erin McNulty

Results 3 issues of Erin McNulty

This PR addresses #343 by applying the fix suggested in the issue, and adds in a test to verify that it is working.

This change addresses #293 by adding in `start_date` and `end_date` querying options to the Fangraphs functions. I didn't change any existing functionality in the Fangraphs function, but did make a...

The following unit test demonstrates the issue: ``` TEST(TokenBucketTest, CanConsumeFirstTokenLowRate) { folly::DynamicTokenBucket tokenBucket; ASSERT_EQ(tokenBucket.consumeWithBorrowNonBlocking(1.0 /** toConsume*/, .0001 /** rate*/, 1.0 /** burstSize*/), 0.0); } ``` IIUC, this should succeed because...