About 1,311,143 results (1,380 milliseconds)

Range over int

https://groups.google.com/g/golang-nuts/c/7J8FY07dkW0/m/iwSs6_Q3AAAJ
Jan 19, 2012 ... Range over int · Cyril Oblikov · Volker Dobler · Ronnie Howell · Cyril Oblikov · Paul Borman · Steven Blenkinsop · Dmitry Vyukov · Dmitry Vyukov.

Using int() on date ranges to facilitate use of countif() - Google Docs ...

https://support.google.com/docs/thread/79530546/using-int-on-date-ranges-to-facilitate-use-of-countif?hl=en
Oct 27, 2020 ... Using int() on date ranges to facilitate use of countif(). I have a large spreadsheet with a row for each event on a given day. I'm trying to ...

List of dates between a range excluding days using Networkdays.int ...

https://support.google.com/docs/thread/264895784/list-of-dates-between-a-range-excluding-days-using-networkdays-int?hl=en
Mar 20, 2024 ... I can get the number of days between 2 dates using networkdays.int, and i have a separate formula to get a list of dates from a range - but i ...

Data types | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/data-types
Integers are numeric values that don't have fractional components. Name, Range. INT64 INT SMALLINT INTEGER BIGINT TINYINT BYTEINT, -9,223,372,036,854,775,808 to ...

evaluation of range expression in for-range loop

https://groups.google.com/g/golang-nuts/c/_iqC8QTFjtM
Mar 18, 2022 ... My guess was that this says that in "for i := range [3]int{1, 2, f()} ..." the function f is not called, but I quick experiment shows that ...

[Boost-users] [Range] invalid initialization of non-const type with ...

https://groups.google.com/g/boost-list/c/rt4hSVKfYUk
> #include <boost/range/adaptors.hpp> > > #include <vector> > > int main(int argc, char *argv[]) > { > std::vector<int> vec(10); > boost::fill(vec | boost ...

Creating partitioned tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/creating-partitioned-tables
Create an integer-range partitioned table · For Dataset name, choose the appropriate dataset. · In the Table name field, enter the name of the table. · Verify that ...

Randomly selecting k integers from the range [min, max)

https://groups.google.com/g/golang-nuts/c/qWkjqXfQYDA
Depending on the ratio between k and max-min, I pick between two methods: if k << max-min, I fill a map with random numbers until its length is k, then I copy ...

WASM: floating-point-to-integer conversion error in latest incoming ...

https://groups.google.com/g/emscripten-discuss/c/IJr4ApiW_zU
Jun 2, 2018 ... ... integer range,RuntimeError: float unrepresentable in integer range ... BulletPhysicsBasic.js:1 Uncaught RuntimeError: float unrepresentable ...

Introduction to partitioned tables | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/partitioned-tables
Integer range partitioning. You can partition a table based on ranges of values in a specific INTEGER column. To create an integer-range partitioned ...

Range size limitation

https://groups.google.com/g/scala-user/c/GKKTs0WlGks/m/mNSkv2Y9IZ0J
lang.IllegalArgumentException: 1 to 9223372036854775807 by 1: seqs cannot contain more than Int.MaxValue elements. However, I can do Stream.

Allowing unnammed loop variable in range-based for loops?

https://groups.google.com/a/isocpp.org/g/std-proposals/c/_EGbq7ySzAQ/m/Ae4z7KcuAgAJ
Jun 3, 2016 ... ... sequence of integers from 0 to n-1 such that. for (int i : range(10)) { // ... } // Is equivalent to for (int i = 0; i < 10; ++i) { // ... }.

range over slice of floats but compiler thinks they are ints

https://groups.google.com/g/golang-nuts/c/U6SWsqV7J8w
Feb 9, 2012 ... When you range over a slice, you get two values back. The first value is the index value of the element. The second value is the element itself.

Faster bounded random integers

https://groups.google.com/g/erlang-programming/c/iXIyu68KGYg
Sep 13, 2021 ... Generating an unbiased random integer in a range 0..N where N is not a power of two requires rejection sampling.

Range check for type 'Integer'

https://groups.google.com/g/comp.lang.ada/c/Maptn6q_Dao
Because GNAT does not enable integer overflow detection by default; this is a design decision which was a major mistake.

Class Range | Apps Script | Google for Developers

https://developers.google.com/apps-script/reference/spreadsheet/range
Returns a given cell within a range. getColumn(), Integer, Returns the starting column position for this range. getDataRegion(), Range ...

Why even have int/uint?

https://groups.google.com/g/golang-nuts/c/0tm3KO70M_s
Aug 28, 2012 ... - Value used to index many "small" arrays/slices/strings. - The value_of_index from range statement 'var i int; for i = range blah {}'

Let's create us some Dart ranges

https://groups.google.com/a/dartlang.org/g/misc/c/M9djR5zqzak
I also like how groovy Ranges extend List, and the literal syntax. I'm not sure how useful ranges of other Comparables besides int would be though. I think a " ...

FYI: You might be converting float->int wrong

https://groups.google.com/a/chromium.org/g/chromium-dev/c/2c7HGlprD1E/m/bkFFt5LkAgAJ
Oct 26, 2023 ... floats can represent values outside the range of an int, so implicit-casting or static_casting is unsafe due to potential overflow.

Language Guide (proto 3) | Protocol Buffers Documentation

https://developers.google.com/protocol-buffers/docs/proto3
Enumerator constants must be in the range of a 32-bit integer. Since enum values use varint encoding on the wire, negative values are inefficient and thus ...