aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/Iterator.cs
blob: 634c7b404e24f26caca8788ce9a37bcbff3f288d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
using System;
using System.Collections;
using System.Collections.Generic;

namespace SharpCifs.Util.Sharpen
{
    public interface ITerator
	{
		bool HasNext ();
		object Next ();
		void Remove ();
	}

	public abstract class Iterator<T> : IEnumerator<T>, ITerator
	{
		private T _lastValue;

	    object ITerator.Next ()
		{
			return Next ();
		}

		public abstract bool HasNext ();
		public abstract T Next ();
		public abstract void Remove ();

		bool IEnumerator.MoveNext ()
		{
			if (HasNext ()) {
				_lastValue = Next ();
				return true;
			}
			return false;
		}

		void IEnumerator.Reset ()
		{
			throw new NotImplementedException ();
		}

		void IDisposable.Dispose ()
		{
		}

		T IEnumerator<T>.Current {
			get { return _lastValue; }
		}

		object IEnumerator.Current {
			get { return _lastValue; }
		}
	}
}