HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/swig4.0/scilab/std_multiset.i
/*
 *
 * C++ type : STL multiset
 * Scilab type : matrix (for primitive types) or list (for pointer types)
 *
*/

%fragment("StdMultisetTraits", "header", fragment="StdSequenceTraits")
%{
  namespace swig {
    template <class T>
    struct traits_asptr<std::multiset<T> >  {
      static int asptr(const SwigSciObject &obj, std::multiset<T> **multiset) {
        return traits_asptr_stdseq<std::multiset<T> >::asptr(obj, multiset);
      }
    };

    template <class T>
    struct traits_from<std::multiset<T> > {
      static SwigSciObject from(const std::multiset<T>& multiset) {
        return traits_from_stdseq<std::multiset<T> >::from(multiset);
      }
    };
  }
%}

#define %swig_multiset_methods(Set...) %swig_sequence_methods(Type)
#define %swig_multiset_methods_val(Type...) %swig_sequence_methods_val(Type);

%include <std/std_multiset.i>