io.deephaven.chunk.attributes.Values Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-engine-chunk Show documentation
Show all versions of deephaven-engine-chunk Show documentation
Engine Chunks: Array-like data structures for dense, efficient data movement
The newest version!
//
// Copyright (c) 2016-2024 Deephaven Data Labs and Patent Pending
//
package io.deephaven.chunk.attributes;
import io.deephaven.chunk.Chunk;
/**
* Attribute that specifies that a {@link Chunk} contains individual values.
*/
public interface Values extends Any {
}