Zet (Set) class in LotusScript
Public Class Zet As Vector
'declarations
Private pValues As Vector
'/**
' * Constructor.
' */
Public Sub New()
Set Me.pValues = New Vector()
End Sub
'/**
' * Adds only unique elements.
' */
Public Sub AddElement(d As Variant)
'see if the vector contains this element already
If Not Me.pValues.Contains(d.UniversalID) Then
Call Vector..AddElement(d)
Call Me.pValues.AddElement(d.UniversalID)
End If
End Sub
Public Function Size() As Integer
Size = Vector..Size()
End Function
Public Function Elements() As Enumeration
Set Elements = Vector..Elements()
End Function
End Class
Re: Zet (Set) class in LotusScript
Isn't your addElement method hardcoded for NotesDocuments, since you are using d.UniversalID? Isn't it better to override the contains (actually the indexOf) method, so that you can test if any of the UNIDs already have been added?
Thanks for the bug report btw :-D





