// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.Memory
{
///
/// Options for allocating buffers.
///
public enum AllocationOptions
{
///
/// Indicates that the buffer should just be allocated.
///
None,
///
/// Indicates that the allocated buffer should be cleaned following allocation.
///
Clean
}
}