Re: What is a mutable method?

2015-05-22 Thread Jonathan M Davis via Digitalmars-d-learn
On Friday, May 22, 2015 12:12:45 tcak via Digitalmars-d-learn wrote: > I know there is mutable variables, but what is a mutable method? > > Error message says "mutable method > project.mariadb.connector.ver2p1.resultset.ResultSetColumn.info > is not callable using a const obj

Re: What is a mutable method?

2015-05-22 Thread Steven Schveighoffer via Digitalmars-d-learn
On 5/22/15 8:12 AM, tcak wrote: I know there is mutable variables, but what is a mutable method? Error message says "mutable method project.mariadb.connector.ver2p1.resultset.ResultSetColumn.info is not callable using a const object". English grammar nit: I would say mutating

Re: What is a mutable method?

2015-05-22 Thread FreeSlave via Digitalmars-d-learn
On Friday, 22 May 2015 at 12:12:46 UTC, tcak wrote: I know there is mutable variables, but what is a mutable method? Error message says "mutable method project.mariadb.connector.ver2p1.resultset.ResultSetColumn.info is not callable using a const object". The method that can change

What is a mutable method?

2015-05-22 Thread tcak via Digitalmars-d-learn
I know there is mutable variables, but what is a mutable method? Error message says "mutable method project.mariadb.connector.ver2p1.resultset.ResultSetColumn.info is not callable using a const object".