Java List Combine combine(int sign, List exponentBits, List mantissaBits)

Here you can find the source of combine(int sign, List exponentBits, List mantissaBits)

Description

combine

License

Open Source License

Declaration

public static List<Integer> combine(int sign, List<Integer> exponentBits, List<Integer> mantissaBits) 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.util.ArrayList;

import java.util.List;

public class Main {
    public static List<Integer> combine(int sign, List<Integer> exponentBits, List<Integer> mantissaBits) {
        List<Integer> bits = new ArrayList<>();
        bits.add(sign);/*from   w  w  w. j  a  v a2s.co m*/
        bits.addAll(exponentBits);
        bits.addAll(mantissaBits);
        return bits;
    }
}

Related

  1. combine(final List r, final char sep)
  2. combine(final List dataChunks)
  3. combine(final List list, final List list2)
  4. combine(List r, char sep)
  5. combine(List> lists)
  6. combine(List commands, int startAt, int endAt)
  7. combine(List strlist, String delimiter)