structstd.zig.Ast.Node.SliceSentinel[src]

Fields

start: Index
end: Index

May be 0 if the slice is "open"

sentinel: Index

Source Code

Source code
pub const SliceSentinel = struct {
    start: Index,
    /// May be 0 if the slice is "open"
    end: Index,
    sentinel: Index,
}