summaryrefslogtreecommitdiffstats
path: root/src/misc/vec/vecWrd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/misc/vec/vecWrd.h')
-rw-r--r--src/misc/vec/vecWrd.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/misc/vec/vecWrd.h b/src/misc/vec/vecWrd.h
index 99aa1acb..a5beeb37 100644
--- a/src/misc/vec/vecWrd.h
+++ b/src/misc/vec/vecWrd.h
@@ -1120,6 +1120,24 @@ static inline void Vec_WrdSortUnsigned( Vec_Wrd_t * p )
}
+/**Function*************************************************************
+
+ Synopsis [Appends the contents of the second vector.]
+
+ Description []
+
+ SideEffects []
+
+ SeeAlso []
+
+***********************************************************************/
+static inline void Vec_WrdAppend( Vec_Wrd_t * vVec1, Vec_Wrd_t * vVec2 )
+{
+ word Entry; int i;
+ Vec_WrdForEachEntry( vVec2, Entry, i )
+ Vec_WrdPush( vVec1, Entry );
+}
+
ABC_NAMESPACE_HEADER_END