func removeHeader()

in Source/AwsCommonRuntimeKit/http/HttpMessage.swift [58:64]


    func removeHeader(atIndex index: Int) -> Bool {
        if aws_http_message_erase_header(rawValue, index) != AWS_OP_SUCCESS {
            return false
        }

        return true
    }