public Double append()

in src/main/java/org/apache/commons/graph/weight/primitive/DoubleWeightBaseOperations.java [44:51]


    public Double append( Double s1, Double s2 )
    {
        if ( s1 == null || s2 == null )
        {
            return null;
        }
        return s1 + s2;
    }