Servertec   arrayCopy( )
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Conventions
Scriptlets
Data Types
Constants
Variables
Procedures
Operators
Statements
Objects
Array
Cookie
Date
Enumeration
File
FileDescriptor
Hashtable
Internet
IO
JDBC
Number
Object
Properties
Random
Request
Response
SqlTypes
Stack
StreamTokenizer
String
StringBuffer
StringTokenizer
System
Vector

Wrappers
Servlet
Server Side
Preprocessor
Executable
Samples
Sales
Legal
Feedback

 

Copies the specified number of array elements from the specified source array at the given starting position to the named destination array starting at the specified position.

Syntax

    arrayCopy( srcArray , srcOffset , dstArray , dstOffset , length )

Parameters

    srcArray the array object to copy.
    srcOffset the starting offset into the source array object.
    dstArray the array object to copy to.
    dstOffset the starting offset into the destination array object.
    length the number of array elements to copy.

Returns

    nothing

Example

    arrayCopy( srcAarray, 0, dstArray, 0, len )
    
 top of page
 Built with iScript Copyright © 1997-1999 Servertec. All rights reserved.
Last Modified: Tue Jan 26 22:19:03 EST 1999