ADMB Documentation
-a65f1c97
Main Page
Function Reference
Classes
Source Code
Related Pages
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
src
tools99
strcase2.cpp
Go to the documentation of this file.
1
8
#include "
adstring.hpp
"
9
10
void
adstring_array::to_lower
(
void
)
11
{
12
int
i1 =
indexmin
();
13
int
i2 =
indexmax
();
14
for
(
int
i=i1; i <= i2; i++)
15
{
16
(
ptr
[i])->
to_lower
();
17
//(*this[i]).adstring::to_lower();
18
}
19
}
20
21
void
adstring_array::to_upper
(
void
)
22
{
23
int
i1 =
indexmin
();
24
int
i2 =
indexmax
();
25
for
(
int
i=i1; i <= i2; i++)
26
{
27
(
ptr
[i])->
to_upper
();
28
}
29
}
30
31
adstring_array
to_lower
(
adstring_array
& s)
32
{
33
adstring_array
t = s;
34
t.
to_lower
();
35
return
(t);
36
}
37
38
adstring_array
to_upper
(
adstring_array
& s)
39
{
40
adstring_array
t = s;
41
t.
to_upper
();
42
return
(t);
43
}
adstring.hpp
adstring_array::ptr
adstring ** ptr
Definition:
adstring.hpp:201
adstring_array::indexmin
int indexmin(void) const
Definition:
string5.cpp:68
adstring_array::to_lower
void to_lower(void)
Definition:
strcase2.cpp:10
adstring_array
Definition:
adstring.hpp:198
to_upper
adstring to_upper(adstring &s)
Definition:
strcase.cpp:38
to_lower
adstring to_lower(adstring &s)
Definition:
strcase.cpp:31
adstring_array::indexmax
int indexmax(void) const
Definition:
string5.cpp:71
adstring_array::to_upper
void to_upper(void)
Definition:
strcase2.cpp:21
Generated on Wed Sep 7 2022 00:01:30 for ADMB Documentation by
1.8.5