package
8.0.1
Repository: https://github.com/apache/arrow.git
Documentation: pkg.go.dev

# Functions

FillRandomBooleans populates out with random bools with the probability p of being false using seed as the random seed to the generator in order to allow consistency for testing.
FillRandomByteArray populates out with random ByteArray values with lengths between 2 and 12 using heap as the actual memory storage used for the bytes generated.
FillRandomFixedByteArray populates out with random FixedLenByteArray values with of a length equal to size using heap as the actual memory storage used for the bytes generated.
FillRandomFloat32 populates out with random float32 values using seed as the random seed for the generator to allow consistency for testing.
FillRandomFloat64 populates out with random float64 values using seed as the random seed for the generator to allow consistency for testing.
FillRandomInt16 populates the slice out with random int16 values between min and max using seed as the random see for generation to allow consistency for testing.
FillRandomInt32 populates out with random int32 values using seed as the random seed for the generator to allow consistency for testing.
FillRandomInt32Max populates out with random int32 values between 0 and max using seed as the random seed for the generator to allow consistency for testing.
FillRandomInt64 populates out with random int64 values using seed as the random seed for the generator to allow consistency for testing.
FillRandomInt64Max populates out with random int64 values between 0 and max using seed as the random seed for the generator to allow consistency for testing.
FillRandomInt8 populates the slice out with random int8 values between min and max using seed as the random see for generation to allow consistency for testing.
FillRandomInt96 populates out with random Int96 values using seed as the random seed for the generator to allow consistency for testing.
FillRandomUint16 populates the slice out with random uint16 values between min and max using seed as the random see for generation to allow consistency for testing.
FillRandomUint32 populates out with random uint32 values using seed as the random seed for the generator to allow consistency for testing.
FillRandomUint32Max populates out with random uint32 values between 0 and max using seed as the random seed for the generator to allow consistency for testing.
FillRandomUint64 populates out with random uint64 values using seed as the random seed for the generator to allow consistency for testing.
FillRandomUint64Max populates out with random uint64 values between 0 and max using seed as the random seed for the generator to allow consistency for testing.
FillRandomUint8 populates the slice out with random uint8 values between min and max using seed as the random see for generation to allow consistency for testing.
InitValues is a convenience function for generating a slice of random values based on the type.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewRandomArrayGenerator constructs a new generator with the requested Seed.
No description provided by the author
No description provided by the author
RandomByteArray populates out with random ByteArray values with lengths between minlen and maxlen using heap as the actual memory storage used for the bytes generated.
RandomDecimals generates n random decimal values with precision determining the byte width for the values and seed as the random generator seed to allow consistency for testing.
RandomNonNull generates a random arrow array of the requested type with length size with no nulls.
RandomNullable generates a random arrow array of length size with approximately numNulls, at most there can be size/2 nulls.
No description provided by the author

# Structs

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
RandomArrayGenerator is a struct used for constructing Random Arrow arrays for use with testing.