We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
guess_max
In many cases we don't need to go through the entire vector to guess the type, apropos readxl::read_excel(guess_max) and vroom::vroom(guess_max).
readxl::read_excel(guess_max)
vroom::vroom(guess_max)
It seems that we can implement the same thing here
minty/src/CollectorGuess.cpp
Lines 13 to 29 in 850c046
Instead of going through x entirely (for (const auto & i : x)), just go through a subset of the first guess_max items.
x
for (const auto & i : x)
The text was updated successfully, but these errors were encountered:
7d08b05
readxl::read_xlsx()
No branches or pull requests
In many cases we don't need to go through the entire vector to guess the type, apropos
readxl::read_excel(guess_max)
andvroom::vroom(guess_max)
.It seems that we can implement the same thing here
minty/src/CollectorGuess.cpp
Lines 13 to 29 in 850c046
Instead of going through
x
entirely (for (const auto & i : x)
), just go through a subset of the firstguess_max
items.The text was updated successfully, but these errors were encountered: