/// <summary> /// Creates a STD_ULOGIC_VECTOR(range) subtype indication. /// </summary> /// <param name="range">the range</param> /// <returns>the subtype indication</returns> public static SubtypeIndication Create_STD_ULOGIC_VECTOR(Range range) { return(new IndexSubtypeIndication(STD_ULOGIC_VECTOR, range)); }
/// <summary> /// Creates an UNSIGNED(range) subtype indication. /// </summary> /// <param name="range">the range</param> /// <returns>the subtype indication</returns> public static SubtypeIndication Create_UNSIGNED(Range range) { return(new IndexSubtypeIndication(UNSIGNED, range)); }
/// <summary> /// Creates a BIT_VECTOR(range) subtype indication. /// </summary> /// <param name="range">range the range</param> /// <returns>the subtype indication</returns> public static SubtypeIndication Create_BIT_VECTOR(Range range) { return(new IndexSubtypeIndication(BIT_VECTOR, range)); }