Lot of checks on a request causes any performance overhead?

Hi All,
I have a question.
If I have a lot of checks on a request, does it causes any performance impact on the machine we run gatling tests?

Eg:

def getSomePage = exec(http("Get Some Page")
    .get("/end/point/${SOME_ID}")
    .check(status.is(200))
    .check(css("a[id^='edit-id-']", "href").optional.saveAs("EDIT_LINK"))
    .check(css("a[id^='save-id-']", "href").optional.saveAs("SAVE_LINK"))
    ..........
    ..........
    .......... (200 more checks/extractions)
  )

Regards,

RJ