On Tue May 9 19:57:25 2023 +0000, Connor McAdams wrote:
Just as an example of how you might do this in a more unique way:
typedef enum MetadataBit { None = 0x00, IsValueHandle = 0x01, IsPropertyReadOnly = 0x02, IsValueCollection = 0x04, IsValueCollectionReadOnly = 0x08, IsValueBindingExpression = 0x10, IsValueNull = 0x20, IsValueHandleAndEvaluatedValue = 0x40, } MetadataBit;
Done. Thanks for the review.