Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Ada.Containers.Indefinite_Vectors to implement vectors, but whenever I do something like:

size := myVector'Length;

I get this error:

prefix for "Length" attribute may not be private type

How can I access this attribute?

share|improve this question

1 Answer

up vote 6 down vote accepted

Ada.Containers.Indefinite_Vectors defines a function for getting the Length. It is called Length.

So, in your code:

size := myVector.Length; -- Ada 2005/2012
size := myVectorPackage.Length (myVector); -- Ada 95

The Attribute 'Length is only valid for array types.

share|improve this answer
Ah, stupid me. I was misreading the instructions this whole time. I guess I just needed another set of eyes. Thank you. – David DeMar Apr 3 '12 at 12:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.