Initial commit of OpenSPARC T2 design and verification files.
[OpenSPARC-T2-DV] / tools / perl-5.8.0 / lib / site_perl / 5.8.0 / Pastel / Text / StringCharacterIterator.pm
CommitLineData
86530b38
AT
1package StringCharacterIterator;
2
3@ISA = qq(Pastel::Tools::Mixin);
4
5use Carp;
6use strict;
7
8# Perl module for Pastel::Text::StringCharacterIterator
9# Cared for by Malay<curiouser@ccmb.ap.nic.in>
10# Copyright 2001, Malay Kumar Basu
11# You may distribute this module under the same terms as perl itself
12
13sub new {
14}
15
16sub _init{
17}
18
19sub current {
20}
21
22sub first {
23}
24
25sub get_begin_index {
26}
27
28sub get_end_index {
29}
30
31sub get_index {
32}
33
34sub last {
35}
36
37sub next {
38}
39
40sub previous {
41}
42
43sub set_index {
44}
45
46sub set_text{
47}
48
491;