Android Array Concatenate arrayApend(byte[] prep, byte after)

Here you can find the source of arrayApend(byte[] prep, byte after)

Description

array Apend

License

Open Source License

Declaration

public static byte[] arrayApend(byte[] prep, byte after) 

Method Source Code

//package com.java2s;

public class Main {
    public static byte[] arrayApend(byte[] prep, byte after) {
        byte[] result = new byte[prep.length + 1];
        System.arraycopy(prep, 0, result, 0, prep.length);
        result[prep.length] = after;/*from  w  w w .  j av a 2 s.  co m*/
        return result;
    }

    public static byte[] arraycopy(byte[] from, byte[] to) {
        System.arraycopy(from, 0, to, 0, from.length);
        return to;
    }
}

Related

  1. concat(T[] first, T[]... rest)
  2. concat(byte[] first, byte[]... rest)
  3. cancat(byte[] a, byte[] b)
  4. arrayComb(byte[] prep, byte[] after)
  5. concat(T[] a, T[] b)
  6. concatAll(T[] first, T[]... rest)
  7. concatenate(byte[]... bytes)